X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=tests%2Fbindings%2Fpython%2Fbt2%2Ftest_stream_class.py;fp=tests%2Fbindings%2Fpython%2Fbt2%2Ftest_stream_class.py;h=09e6e5e0d12ea09acbefd9f7a3cceb1616d98cd0;hp=f68be98ddede8556dc687548c166c2456f5f318e;hb=f5567ea88d172767b34373bc6e402da8bfd85ef8;hpb=419d8c49bd978a59b8a0619d83cb6ba26b18f970 diff --git a/tests/bindings/python/bt2/test_stream_class.py b/tests/bindings/python/bt2/test_stream_class.py index f68be98d..09e6e5e0 100644 --- a/tests/bindings/python/bt2/test_stream_class.py +++ b/tests/bindings/python/bt2/test_stream_class.py @@ -42,8 +42,8 @@ class StreamClassTestCase(unittest.TestCase): self.assertEqual(len(sc.user_attributes), 0) def test_create_name(self): - sc = self._tc.create_stream_class(name='bozo') - self.assertEqual(sc.name, 'bozo') + sc = self._tc.create_stream_class(name="bozo") + self.assertEqual(sc.name, "bozo") def test_create_invalid_name(self): with self.assertRaisesRegex(TypeError, "'int' is not a 'str' object"): @@ -115,8 +115,8 @@ class StreamClassTestCase(unittest.TestCase): self.assertEqual(len(self._tc), 0) def test_create_user_attributes(self): - sc = self._tc.create_stream_class(user_attributes={'salut': 23}) - self.assertEqual(sc.user_attributes, {'salut': 23}) + sc = self._tc.create_stream_class(user_attributes={"salut": 23}) + self.assertEqual(sc.user_attributes, {"salut": 23}) def test_create_invalid_user_attributes(self): with self.assertRaisesRegex( @@ -155,7 +155,7 @@ class StreamClassTestCase(unittest.TestCase): def test_automatic_stream_ids_wrong_type(self): with self.assertRaisesRegex(TypeError, "str' is not a 'bool' object"): - self._tc.create_stream_class(assigns_automatic_stream_id='True') + self._tc.create_stream_class(assigns_automatic_stream_id="True") self.assertEqual(len(self._tc), 0) @@ -199,7 +199,7 @@ class StreamClassTestCase(unittest.TestCase): def test_automatic_event_class_ids_wrong_type(self): with self.assertRaisesRegex(TypeError, "'str' is not a 'bool' object"): - self._tc.create_stream_class(assigns_automatic_event_class_id='True') + self._tc.create_stream_class(assigns_automatic_event_class_id="True") self.assertEqual(len(self._tc), 0) @@ -349,7 +349,7 @@ class StreamClassTestCase(unittest.TestCase): ): with self.assertRaisesRegex( ValueError, - 'cannot have no default clock class, but have default clock snapshots for discarded event messages', + "cannot have no default clock class, but have default clock snapshots for discarded event messages", ): self._tc.create_stream_class( supports_discarded_events=True, @@ -425,7 +425,7 @@ class StreamClassTestCase(unittest.TestCase): ): with self.assertRaisesRegex( ValueError, - 'cannot have no default clock class, but have default clock snapshots for discarded packet messages', + "cannot have no default clock class, but have default clock snapshots for discarded packet messages", ): self._tc.create_stream_class( supports_packets=True, @@ -458,12 +458,12 @@ class StreamClassTestCase(unittest.TestCase): sc, _, _ = self._create_stream_class_with_event_classes() with self.assertRaisesRegex(TypeError, "'str' is not an 'int' object"): - sc['event23'] + sc["event23"] def test_getitem_wrong_key(self): sc, _, _ = self._create_stream_class_with_event_classes() - with self.assertRaisesRegex(KeyError, '19'): + with self.assertRaisesRegex(KeyError, "19"): sc[19] def test_len(self): @@ -478,5 +478,5 @@ class StreamClassTestCase(unittest.TestCase): self.assertEqual(ec_ids, [17, 23]) -if __name__ == '__main__': +if __name__ == "__main__": unittest.main()