From 2fb8089d8cae1cb9306f1a9c1348e643fe2d8850 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Thu, 30 Oct 2008 19:46:52 +0000 Subject: [PATCH] * Slightly tweak to teardown test, try a circuit which never existed in the first place --- .../Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs index 8e5d7ad856..07fbf55fe8 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs @@ -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)); } } }