From 4d7e6702e96f7c681ca4ad7104269d9efa51d9f9 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Mon, 7 Jan 2008 19:58:41 +0000 Subject: [PATCH] Fixed indention problem that caused the second TIPC test to run on systems without TIPC --- Lib/test/test_socket.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 45f0434b1d..4b30db8e7f 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -1186,7 +1186,7 @@ def test_main(): tests.append(TestLinuxAbstractNamespace) if isTipcAvailable(): tests.append(TIPCTest) - tests.append(TIPCThreadableTest) + tests.append(TIPCThreadableTest) thread_info = test_support.threading_setup() test_support.run_unittest(*tests) -- 2.50.1