X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=tests%2Fbindings%2Fpython%2Fbt2%2Ftest_field.py;h=53906b97c065a4a5ed28eef0c5c82a62dad5334c;hb=d4db9beb2e8e00eaa60a5f89f745b1add05a7d64;hp=47755f2ffdba8d98e9059ba675cb9bde70a50a71;hpb=9f77b5059100f83b11db092e952ecb14f998d21e;p=babeltrace.git diff --git a/tests/bindings/python/bt2/test_field.py b/tests/bindings/python/bt2/test_field.py index 47755f2f..53906b97 100644 --- a/tests/bindings/python/bt2/test_field.py +++ b/tests/bindings/python/bt2/test_field.py @@ -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)