aboutsummaryrefslogtreecommitdiff
path: root/tests/test-reconnect.py
diff options
context:
space:
mode:
authorEthan Jackson <ethan@nicira.com>2011-09-24 16:19:27 -0700
committerEthan Jackson <ethan@nicira.com>2011-09-24 16:19:27 -0700
commitb17a80ee405da3843710f428b4f83015dc35c342 (patch)
tree8d74ef4c362d6ad8ab8fc828fe2341fac7b3458e /tests/test-reconnect.py
parentbfa29793ece6fc683e97b5bf9a66e46ecef7df35 (diff)
test-reconnect: Fix use of undefined symbol.
Diffstat (limited to 'tests/test-reconnect.py')
-rw-r--r--tests/test-reconnect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-reconnect.py b/tests/test-reconnect.py
index a4cc9b7d..af52c8ac 100644
--- a/tests/test-reconnect.py
+++ b/tests/test-reconnect.py
@@ -33,7 +33,7 @@ def error_from_string(s):
elif s == "ECONNREFUSED":
return errno.ECONNREFUSED
elif s == "EOF":
- return EOF
+ return ovs.reconnect.EOF
else:
sys.stderr.write("unknown error '%s'\n" % s)
sys.exit(1)