From 391ff77659b119682d68e10aabc3f90caaa073be Mon Sep 17 00:00:00 2001 From: Eduard Braun Date: Sun, 6 Dec 2015 20:10:12 +0100 Subject: [PATCH] Unittests: Fix import paths --- testcss.py | 2 +- testscour.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/testcss.py b/testcss.py index 243ab35..70601e0 100755 --- a/testcss.py +++ b/testcss.py @@ -20,7 +20,7 @@ # limitations under the License. import unittest -from yocto_css import parseCssString +from scour.yocto_css import parseCssString class Blank(unittest.TestCase): def runTest(self): diff --git a/testscour.py b/testscour.py index 0167875..9f7a5b3 100755 --- a/testscour.py +++ b/testscour.py @@ -22,8 +22,8 @@ import unittest import xml.dom.minidom -from svg_regex import svg_parser -from scour import scourXmlFile, scourString, parse_args, makeWellFormed +from scour.svg_regex import svg_parser +from scour.scour import scourXmlFile, scourString, parse_args, makeWellFormed SVGNS = 'http://www.w3.org/2000/svg'