Browse Source

Fix a bug in the larger simulation performance test

jonathanvdc 8 years ago
parent
commit
55e33d4bfb
1 changed files with 5 additions and 1 deletions
  1. 5 1
      performance/test_mvc_simulate_larger.py

+ 5 - 1
performance/test_mvc_simulate_larger.py

@@ -19,6 +19,7 @@ all_files = [
     "compilation_manager.alc",
 ]
 
+
 class TestMvCSimulateLarger(unittest.TestCase):
     def transform_add_MT_pn_simulate_larger(self, optimization_level):
         def step_and_print():
@@ -331,4 +332,7 @@ class TestMvCSimulateLarger(unittest.TestCase):
                 [],
             optimization_level))
 
-utils.define_perf_tests(TestMvC, TestMvC.transform_add_MT_pn_simulate_larger)
+
+utils.define_perf_tests(
+    TestMvCSimulateLarger,
+    TestMvCSimulateLarger.transform_add_MT_pn_simulate_larger)