Stress tests Python scripts: fix semantics
[ctf-testsuite.git] / tests / 1.8 / stress / metadata / pass / large-metadata / test.py
index 3e470a04721e9ee6bbea1190c2a3a3db3b7540d6..d9a876bf8b71127eba1822114a932fcc660e845d 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 = 'large metadata with {size} extra chars'
 
     def write_metadata(self, f):
@@ -25,5 +25,5 @@ class Test(MetadataTest):
 
 
 if __name__ == '__main__':
-    test = Test()
-    test.main()
+    test_assistant = TestAssistant()
+    test_assistant.main()
This page took 0.023674 seconds and 4 git commands to generate.