diff options
author | Diva Canto | 2017-08-14 16:49:11 -0700 |
---|---|---|
committer | Diva Canto | 2017-08-14 16:49:11 -0700 |
commit | 8b6557e377f7bac1bdb38f3e6dd22c797417d09c (patch) | |
tree | 41e228bbd3dcc90fcd29accd1aaf2a0914129c82 /OpenSim/Tests/Permissions/Common.cs | |
parent | This is the correct work around. Jenkins is confuzzled. (diff) | |
download | opensim-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.cs | 4 |
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 | { |