aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Codeforces.Test/Tests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Codeforces.Test/Tests.cs b/Codeforces.Test/Tests.cs
index f45b503..9623788 100644
--- a/Codeforces.Test/Tests.cs
+++ b/Codeforces.Test/Tests.cs
@@ -4,7 +4,7 @@ namespace Codeforces.Test;
public class Tests
{
- [Fact]
+ [Fact(Timeout = 30000)]
public void TestText()
{
IOTester.Start();
@@ -32,7 +32,7 @@ public class Tests
Assert.Equal(expected, actual);
}
- [Theory]
+ [Theory(Timeout = 30000)]
[ClassData(typeof(FileNameGenerator))]
public void TestIO(string input, string output)
{