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

0.6.0-stable
Justin Clarke Casey 2008-10-30 19:46:52 +00:00
parent 22ec3e7952
commit 2fb8089d8c
1 changed files with 3 additions and 3 deletions

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));
}
}
}