Skip to content

Commit 70e0bb6

Browse files
committed
* NUnit3 renamed deprecated attributes.
* Added current year in LICENSE
1 parent fe70026 commit 70e0bb6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2007-2011, Demis Bellot, ServiceStack.
1+
Copyright (c) 2007-2016, Demis Bellot, ServiceStack.
22
http://www.servicestack.net
33
All rights reserved.
44

src/RestFiles/RestFiles.Tests/AsyncRestClientTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ public class AsyncRestClientTests
2929

3030
RestFilesHttpListener appHost;
3131

32-
[TestFixtureSetUp]
32+
[OneTimeSetUp]
3333
public void TextFixtureSetUp()
3434
{
3535
appHost = new RestFilesHttpListener();
3636
appHost.Init();
3737
}
3838

39-
[TestFixtureTearDown]
39+
[OneTimeTearDown]
4040
public void TestFixtureTearDown()
4141
{
4242
if (appHost != null) appHost.Dispose();

src/RestFiles/RestFiles.Tests/SyncRestClientTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ public class SyncRestClientTests
2727

2828
RestFilesHttpListener appHost;
2929

30-
[TestFixtureSetUp]
30+
[OneTimeSetUp]
3131
public void TextFixtureSetUp()
3232
{
3333
appHost = new RestFilesHttpListener();
3434
appHost.Init();
3535
}
3636

37-
[TestFixtureTearDown]
37+
[OneTimeTearDown]
3838
public void TestFixtureTearDown()
3939
{
4040
if (appHost != null) appHost.Dispose();

0 commit comments

Comments
 (0)