Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Merge pull request #32 from Setil/master
Browse files Browse the repository at this point in the history
fixed AllureExtendedConfiguration not created from AllureConfiguration
  • Loading branch information
unickq authored Feb 14, 2021
2 parents 15b1397 + 8ea502d commit b68c2e0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/allure-nunit/Core/AllureExtendedConfiguration.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
using System.Collections.Generic;
using Allure.Commons.Configuration;
using Newtonsoft.Json;

namespace NUnit.Allure.Core
{
internal class AllureExtendedConfiguration : AllureConfiguration
{
public HashSet<string> BrokenTestData { get; set; } = new HashSet<string>();

[JsonConstructor]
protected AllureExtendedConfiguration(string title, string directory, HashSet<string> links) : base(title,
directory, links)
{
Expand Down

0 comments on commit b68c2e0

Please sign in to comment.