aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/JsonStore
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-02-12 20:51:36 +0000
committerJustin Clark-Casey (justincc)2013-02-12 20:51:36 +0000
commit058d477ce7cfb9ddc4f5508368141b5d74ba91e3 (patch)
tree840bc3876778ec8a1d733fb2133bf0537461e56f /OpenSim/Region/OptionalModules/Scripting/JsonStore
parentAdds the parameter for OSD serialization to encode default values. This (diff)
downloadopensim-SC_OLD-058d477ce7cfb9ddc4f5508368141b5d74ba91e3.zip
opensim-SC_OLD-058d477ce7cfb9ddc4f5508368141b5d74ba91e3.tar.gz
opensim-SC_OLD-058d477ce7cfb9ddc4f5508368141b5d74ba91e3.tar.bz2
opensim-SC_OLD-058d477ce7cfb9ddc4f5508368141b5d74ba91e3.tar.xz
Re-enable subtest for single quoted token in TestJsonSetValueJson()
This is in response to the resolution of http://opensimulator.org/mantis/view.php?id=6540
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/JsonStore')
-rw-r--r--OpenSim/Region/OptionalModules/Scripting/JsonStore/Tests/JsonStoreScriptModuleTests.cs18
1 files changed, 9 insertions, 9 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/JsonStore/Tests/JsonStoreScriptModuleTests.cs b/OpenSim/Region/OptionalModules/Scripting/JsonStore/Tests/JsonStoreScriptModuleTests.cs
index 717484c..012a528 100644
--- a/OpenSim/Region/OptionalModules/Scripting/JsonStore/Tests/JsonStoreScriptModuleTests.cs
+++ b/OpenSim/Region/OptionalModules/Scripting/JsonStore/Tests/JsonStoreScriptModuleTests.cs
@@ -369,15 +369,15 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore.Tests
369// TestHelpers.EnableLogging(); 369// TestHelpers.EnableLogging();
370 370
371 // Single quoted token case 371 // Single quoted token case
372// { 372 {
373// UUID storeId = (UUID)InvokeOp("JsonCreateStore", "{ }"); 373 UUID storeId = (UUID)InvokeOp("JsonCreateStore", "{ }");
374// 374
375// int result = (int)InvokeOp("JsonSetValueJson", storeId, "Fun", "'Times'"); 375 int result = (int)InvokeOp("JsonSetValueJson", storeId, "Fun", "'Times'");
376// Assert.That(result, Is.EqualTo(1)); 376 Assert.That(result, Is.EqualTo(1));
377// 377
378// string value = (string)InvokeOp("JsonGetValue", storeId, "Fun"); 378 string value = (string)InvokeOp("JsonGetValue", storeId, "Fun");
379// Assert.That(value, Is.EqualTo("Times")); 379 Assert.That(value, Is.EqualTo("Times"));
380// } 380 }
381 381
382 // Sub-tree case 382 // Sub-tree case
383 { 383 {