From a7ee597284cc02fb0c6da95102071aedfbcfa2d6 Mon Sep 17 00:00:00 2001 From: Jeremy Kuhne Date: Sat, 3 Feb 2024 18:02:07 -0800 Subject: [PATCH] Missing the attribute for the discoverer --- src/thirtytwo_tests/Xunit/RetryFactAttribute.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/thirtytwo_tests/Xunit/RetryFactAttribute.cs b/src/thirtytwo_tests/Xunit/RetryFactAttribute.cs index 9cc151e..57f6e85 100644 --- a/src/thirtytwo_tests/Xunit/RetryFactAttribute.cs +++ b/src/thirtytwo_tests/Xunit/RetryFactAttribute.cs @@ -1,7 +1,10 @@ // Taken from Xuint samples. https://github.com/xunit/samples.xunit/tree/main/RetryFactExample +using Xunit.Sdk; + namespace Xunit; +[XunitTestCaseDiscoverer("Xunit.RetryFactDiscoverer", "thirtytwo_tests")] public class RetryFactAttribute : FactAttribute { public int MaxRetries { get; set; } = 3;