Skip to content

Commit

Permalink
Nunit3 Syntax change
Browse files Browse the repository at this point in the history
  • Loading branch information
jbtule committed Aug 18, 2017
1 parent ebad53b commit 84b0b23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/UnitTestImpromptuInterface/Support/FixtureSetup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ public class FixtureSetup
{
private IDisposable Builder;

[SetUp]
[OneTimeSetUp]
public void Setup()
{
Builder = BuildProxy.WriteOutDll("ImpromptuEmit");
}
[TearDown]
[OneTimeTearDown]
public void TearDown()
{
Builder.Dispose();
Expand Down

0 comments on commit 84b0b23

Please sign in to comment.