Fixed an import
diff --git a/Lib/lib2to3/tests/test_fixers.py b/Lib/lib2to3/tests/test_fixers.py
index 6d33672..3b2945c 100755
--- a/Lib/lib2to3/tests/test_fixers.py
+++ b/Lib/lib2to3/tests/test_fixers.py
@@ -6,7 +6,7 @@
 try:
     from tests import support
 except ImportError:
-    import support
+    from . import support
 
 # Python imports
 import unittest