Fix: bt2: duplicate test name in test_field.py
[babeltrace.git] / tests / bindings / python / bt2 / test_field.py
index 47755f2ffdba8d98e9059ba675cb9bde70a50a71..53906b97c065a4a5ed28eef0c5c82a62dad5334c 100644 (file)
@@ -2167,7 +2167,7 @@ class OptionFieldTestCase(unittest.TestCase):
         self._def.has_field = True
         self.assertTrue(self._def.has_field)
 
-    def test_has_field_prop_true(self):
+    def test_has_field_prop_false(self):
         self._def.has_field = False
         self.assertFalse(self._def.has_field)
 
@@ -2175,7 +2175,7 @@ class OptionFieldTestCase(unittest.TestCase):
         self._def.value = 'allo'
         self.assertTrue(self._def)
 
-    def test_bool_op_true(self):
+    def test_bool_op_false(self):
         self._def.has_field = False
         self.assertFalse(self._def)
 
This page took 0.022743 seconds and 4 git commands to generate.