diff options
author | Michael Cerquoni | 2014-07-17 09:37:24 -0400 |
---|---|---|
committer | Michael Cerquoni | 2014-07-17 09:37:24 -0400 |
commit | e455374a4bbe8d65c81c2ed347f86db48c8d08c8 (patch) | |
tree | 267a65dd7e583f74b7013c06415f6eb6b9419763 /OpenSim/Region/OptionalModules/Scripting/JsonStore/Tests | |
parent | Change default script stop method to co-op instead of abort. (diff) | |
download | opensim-SC-e455374a4bbe8d65c81c2ed347f86db48c8d08c8.zip opensim-SC-e455374a4bbe8d65c81c2ed347f86db48c8d08c8.tar.gz opensim-SC-e455374a4bbe8d65c81c2ed347f86db48c8d08c8.tar.bz2 opensim-SC-e455374a4bbe8d65c81c2ed347f86db48c8d08c8.tar.xz |
fix all instances of "non-existant" to "non-existent" (spelling mistakes) thanks Ai Austin for pointing this out.
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/JsonStore/Tests')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/JsonStore/Tests/JsonStoreScriptModuleTests.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/JsonStore/Tests/JsonStoreScriptModuleTests.cs b/OpenSim/Region/OptionalModules/Scripting/JsonStore/Tests/JsonStoreScriptModuleTests.cs index bfa9937..21e2758 100644 --- a/OpenSim/Region/OptionalModules/Scripting/JsonStore/Tests/JsonStoreScriptModuleTests.cs +++ b/OpenSim/Region/OptionalModules/Scripting/JsonStore/Tests/JsonStoreScriptModuleTests.cs | |||
@@ -465,13 +465,13 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore.Tests | |||
465 | Assert.That(result, Is.EqualTo(JsonStoreScriptModule.JSON_NODETYPE_VALUE)); | 465 | Assert.That(result, Is.EqualTo(JsonStoreScriptModule.JSON_NODETYPE_VALUE)); |
466 | } | 466 | } |
467 | 467 | ||
468 | // Test for non-existant path | 468 | // Test for non-existent path |
469 | { | 469 | { |
470 | int result = (int)InvokeOp("JsonGetNodeType", storeId, "foo"); | 470 | int result = (int)InvokeOp("JsonGetNodeType", storeId, "foo"); |
471 | Assert.That(result, Is.EqualTo(JsonStoreScriptModule.JSON_NODETYPE_UNDEF)); | 471 | Assert.That(result, Is.EqualTo(JsonStoreScriptModule.JSON_NODETYPE_UNDEF)); |
472 | } | 472 | } |
473 | 473 | ||
474 | // Test for non-existant store | 474 | // Test for non-existent store |
475 | { | 475 | { |
476 | UUID fakeStoreId = TestHelpers.ParseTail(0x500); | 476 | UUID fakeStoreId = TestHelpers.ParseTail(0x500); |
477 | int result = (int)InvokeOp("JsonGetNodeType", fakeStoreId, "."); | 477 | int result = (int)InvokeOp("JsonGetNodeType", fakeStoreId, "."); |
@@ -898,4 +898,4 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore.Tests | |||
898 | 898 | ||
899 | public object DummyTestMethod(object o1, object o2, object o3, object o4, object o5) { return null; } | 899 | public object DummyTestMethod(object o1, object o2, object o3, object o4, object o5) { return null; } |
900 | } | 900 | } |
901 | } \ No newline at end of file | 901 | } |