diff options
author | Diva Canto | 2017-08-14 16:40:36 -0700 |
---|---|---|
committer | Diva Canto | 2017-08-14 16:40:36 -0700 |
commit | 6a0b7a607f13fcee447c9d10224d5ea77db4f355 (patch) | |
tree | eb2634652064cb94b0fd33ec820eb05b74e49519 /OpenSim/Tests/Permissions | |
parent | Strengthen the tests for the possibility that SetUpFixture does not run in th... (diff) | |
download | opensim-SC-6a0b7a607f13fcee447c9d10224d5ea77db4f355.zip opensim-SC-6a0b7a607f13fcee447c9d10224d5ea77db4f355.tar.gz opensim-SC-6a0b7a607f13fcee447c9d10224d5ea77db4f355.tar.bz2 opensim-SC-6a0b7a607f13fcee447c9d10224d5ea77db4f355.tar.xz |
This is the correct work around. Jenkins is confuzzled.
Diffstat (limited to 'OpenSim/Tests/Permissions')
-rw-r--r-- | OpenSim/Tests/Permissions/DirectTransferTests.cs | 4 | ||||
-rw-r--r-- | OpenSim/Tests/Permissions/IndirectTransferTests.cs | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Tests/Permissions/DirectTransferTests.cs b/OpenSim/Tests/Permissions/DirectTransferTests.cs index c3dfa6c..0f251db 100644 --- a/OpenSim/Tests/Permissions/DirectTransferTests.cs +++ b/OpenSim/Tests/Permissions/DirectTransferTests.cs | |||
@@ -47,8 +47,8 @@ namespace OpenSim.Tests.Permissions | |||
47 | // In case we're dealing with some older version of nunit | 47 | // In case we're dealing with some older version of nunit |
48 | if (Common.TheInstance == null) | 48 | if (Common.TheInstance == null) |
49 | { | 49 | { |
50 | Common c = new Common(); | 50 | Common.TheInstance = new Common(); |
51 | c.SetUp(); | 51 | Common.TheInstance.SetUp(); |
52 | } | 52 | } |
53 | 53 | ||
54 | Common.TheInstance.DeleteObjectsFolders(); | 54 | Common.TheInstance.DeleteObjectsFolders(); |
diff --git a/OpenSim/Tests/Permissions/IndirectTransferTests.cs b/OpenSim/Tests/Permissions/IndirectTransferTests.cs index e33332a..fb96b8b 100644 --- a/OpenSim/Tests/Permissions/IndirectTransferTests.cs +++ b/OpenSim/Tests/Permissions/IndirectTransferTests.cs | |||
@@ -49,8 +49,8 @@ namespace OpenSim.Tests.Permissions | |||
49 | // In case we're dealing with some older version of nunit | 49 | // In case we're dealing with some older version of nunit |
50 | if (Common.TheInstance == null) | 50 | if (Common.TheInstance == null) |
51 | { | 51 | { |
52 | Common c = new Common(); | 52 | Common.TheInstance = new Common(); |
53 | c.SetUp(); | 53 | Common.TheInstance.SetUp(); |
54 | } | 54 | } |
55 | Common.TheInstance.DeleteObjectsFolders(); | 55 | Common.TheInstance.DeleteObjectsFolders(); |
56 | } | 56 | } |