Merge pull request #30 from eepp/fix-python-semantics
[ctf-testsuite.git] / tests / 1.8 / stress / metadata / pass / long-identifier / test.py
index a51f6630cee66490d3ae802da333442ae51a7c48..873d0441d2d91f35f87dc8bc87a962d8bc04ddd7 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 = 'long identifier of {size} chars'
 
     def write_metadata(self, f):
@@ -28,5 +28,5 @@ class Test(MetadataTest):
 
 
 if __name__ == '__main__':
-    test = Test()
-    test.main()
+    test_assistant = TestAssistant()
+    test_assistant.main()
This page took 0.02441 seconds and 4 git commands to generate.