Skip to content

Commit

Permalink
Fix CI (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom authored Nov 16, 2021
1 parent bb10740 commit 6f78477
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": 3,
"status": "error",
"message": "error CS8805: Program using top-level statements must be an executable.",
"message": "FakeTests.cs(31,1): error CS8805: Program using top-level statements must be an executable.",
"tests": []
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class FakeTests : IDisposable

public FakeTests()
{
_file = File.Open("tmp.txt", FileMode.Create);
_file = File.Open(Path.GetTempFileName(), FileMode.Create);
}

[Fact]
Expand Down

0 comments on commit 6f78477

Please sign in to comment.