From 00d736a8c3b5d543fb2e63e60b1e830ed7a10da1 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Tue, 14 Oct 2014 10:34:57 +0900 Subject: [PATCH] test_addrconv: Fix a way to import the tested module I'm not quite sure how it happens to work with the current test environment. But the current coding doesn't work when running via testr probably due to different PYTHONPATH. Signed-off-by: YAMAMOTO Takashi Signed-off-by: FUJITA Tomonori --- ryu/tests/unit/lib/test_addrconv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ryu/tests/unit/lib/test_addrconv.py b/ryu/tests/unit/lib/test_addrconv.py index 00a42db2..39e486dc 100644 --- a/ryu/tests/unit/lib/test_addrconv.py +++ b/ryu/tests/unit/lib/test_addrconv.py @@ -17,7 +17,7 @@ import unittest from nose.tools import eq_ -import addrconv +from ryu.lib import addrconv class Test_addrconv(unittest.TestCase):