Browse Source

verify Python modules hard

Mike Smith 11 years ago
parent
commit
027954c6ba
1 changed files with 2 additions and 2 deletions
  1. 2 2
      toolset/benchmark/framework_test.py

+ 2 - 2
toolset/benchmark/framework_test.py

@@ -1,4 +1,4 @@
-from benchmark import fortune_html_parser
+from benchmark.fortune_html_parser import FortuneHTMLParser
 
 
 import importlib
 import importlib
 import os
 import os
@@ -173,7 +173,7 @@ class FrameworkTest:
     parser = FortuneHTMLParser()
     parser = FortuneHTMLParser()
     parser.feed(htmlString)
     parser.feed(htmlString)
 
 
-    return fortuneValidator.isValidFortune()
+    return parser.isValidFortune()
 
 
   ############################################################
   ############################################################
   # Validates the jsonString is an array with a length of
   # Validates the jsonString is an array with a length of