aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Permissions/Common.cs
diff options
context:
space:
mode:
authorDiva Canto2017-08-14 16:49:11 -0700
committerDiva Canto2017-08-14 16:49:11 -0700
commit8b6557e377f7bac1bdb38f3e6dd22c797417d09c (patch)
tree41e228bbd3dcc90fcd29accd1aaf2a0914129c82 /OpenSim/Tests/Permissions/Common.cs
parentThis is the correct work around. Jenkins is confuzzled. (diff)
downloadopensim-SC-8b6557e377f7bac1bdb38f3e6dd22c797417d09c.zip
opensim-SC-8b6557e377f7bac1bdb38f3e6dd22c797417d09c.tar.gz
opensim-SC-8b6557e377f7bac1bdb38f3e6dd22c797417d09c.tar.bz2
opensim-SC-8b6557e377f7bac1bdb38f3e6dd22c797417d09c.tar.xz
Let's try giving Common a default constructor instead of the workaround
Diffstat (limited to '')
-rw-r--r--OpenSim/Tests/Permissions/Common.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Tests/Permissions/Common.cs b/OpenSim/Tests/Permissions/Common.cs
index 4ecce38..cf4d2bd 100644
--- a/OpenSim/Tests/Permissions/Common.cs
+++ b/OpenSim/Tests/Permissions/Common.cs
@@ -60,6 +60,10 @@ namespace OpenSim.Tests.Permissions
60 private TestScene m_Scene; 60 private TestScene m_Scene;
61 private ScenePresence[] m_Avatars = new ScenePresence[3]; 61 private ScenePresence[] m_Avatars = new ScenePresence[3];
62 62
63 public Common()
64 {
65 }
66
63 [SetUp] 67 [SetUp]
64 public override void SetUp() 68 public override void SetUp()
65 { 69 {