fix all instances of "non-existant" to "non-existent" (spelling mistakes) thanks Ai Austin for pointing this out.

This commit is contained in:
Michael Cerquoni
2014-07-17 09:37:24 -04:00
parent 8cd7ca568d
commit e455374a4b
5 changed files with 8 additions and 8 deletions

View File

@@ -465,13 +465,13 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore.Tests
Assert.That(result, Is.EqualTo(JsonStoreScriptModule.JSON_NODETYPE_VALUE));
}
// Test for non-existant path
// Test for non-existent path
{
int result = (int)InvokeOp("JsonGetNodeType", storeId, "foo");
Assert.That(result, Is.EqualTo(JsonStoreScriptModule.JSON_NODETYPE_UNDEF));
}
// Test for non-existant store
// Test for non-existent store
{
UUID fakeStoreId = TestHelpers.ParseTail(0x500);
int result = (int)InvokeOp("JsonGetNodeType", fakeStoreId, ".");
@@ -898,4 +898,4 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore.Tests
public object DummyTestMethod(object o1, object o2, object o3, object o4, object o5) { return null; }
}
}
}