Stress tests Python scripts: fix semantics
[ctf-testsuite.git] / tests / 1.8 / stress / metadata / pass / many-typedef / test.py
index 9ec068d59380ae2127c5e7818aeb536b4d4c14a6..e5d6be0f355d10883c8c38892494d61fb9fed009 100755 (executable)
@@ -1,8 +1,8 @@
 #!/usr/bin/env python3
-from ctftestsuite.stress import MetadataTest
+from ctftestsuite.stress import MetadataTestAssitant
 
 
-class Test(MetadataTest):
+class TestAssistant(MetadataTestAssitant):
     what = '{size} typedefs'
 
     def write_metadata(self, f):
@@ -18,5 +18,5 @@ class Test(MetadataTest):
 
 
 if __name__ == '__main__':
-    test = Test()
-    test.main()
+    test_assistant = TestAssistant()
+    test_assistant.main()
This page took 0.023157 seconds and 4 git commands to generate.