* Slightly tweak to teardown test, try a circuit which never existed in the first place

This commit is contained in:
Justin Clarke Casey
2008-10-30 19:46:52 +00:00
parent 22ec3e7952
commit 2fb8089d8c

View File

@@ -167,9 +167,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
testLLUDPServer.RemoveClientCircuit(myCircuitCode);
Assert.IsFalse(testLLUDPServer.HasCircuit(myCircuitCode));
// Check that removing the circuit again doesn't have any bad effects
testLLUDPServer.RemoveClientCircuit(myCircuitCode);
Assert.IsFalse(testLLUDPServer.HasCircuit(myCircuitCode));
// Check that removing a non-existant circuit doesn't have any bad effects
testLLUDPServer.RemoveClientCircuit(101);
Assert.IsFalse(testLLUDPServer.HasCircuit(101));
}
}
}