diff options
author | Justin Clark-Casey (justincc) | 2011-09-09 00:47:23 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-09-09 00:47:23 +0100 |
commit | 42790f021fd5d69ba10ac02d158681f3d299da80 (patch) | |
tree | 392382b44126df9304861591047c08df0da35fe2 /OpenSim/Tests | |
parent | Save the default terrain texture UUIDs for a new region instead of leaving th... (diff) | |
download | opensim-SC_OLD-42790f021fd5d69ba10ac02d158681f3d299da80.zip opensim-SC_OLD-42790f021fd5d69ba10ac02d158681f3d299da80.tar.gz opensim-SC_OLD-42790f021fd5d69ba10ac02d158681f3d299da80.tar.bz2 opensim-SC_OLD-42790f021fd5d69ba10ac02d158681f3d299da80.tar.xz |
Fix unit tests from RegionSettings commit
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r-- | OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs b/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs index 2ea36da..79bb9c2 100644 --- a/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs +++ b/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs | |||
@@ -163,6 +163,10 @@ namespace OpenSim.Data.Null | |||
163 | { | 163 | { |
164 | RegionSettings rs = null; | 164 | RegionSettings rs = null; |
165 | m_regionSettings.TryGetValue(regionUUID, out rs); | 165 | m_regionSettings.TryGetValue(regionUUID, out rs); |
166 | |||
167 | if (rs == null) | ||
168 | rs = new RegionSettings(); | ||
169 | |||
166 | return rs; | 170 | return rs; |
167 | } | 171 | } |
168 | 172 | ||