Fix: bt2: use of undefined variable in _VariantFieldClassWithSelectorTestCase.test_co...
authorSimon Marchi <simon.marchi@efficios.com>
Tue, 24 Sep 2019 19:04:07 +0000 (15:04 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 3 Oct 2019 14:45:11 +0000 (10:45 -0400)
Flake8 reports:

    ./tests/bindings/python/bt2/test_field_class.py:875:43: F821 undefined name 'str_field_class'

Fix it by defining the str_field_class variable (even though it won't
actually be used).

Reported-by: flake8
Change-Id: If17cef30ed24b6ec9d1ee25d3f6c94d491ffd8fd
Signed-off-by: Simon Marchi <simon.marchi@efficios.com>
Reviewed-on: https://review.lttng.org/c/babeltrace/+/2090

tests/bindings/python/bt2/test_field_class.py

index c1a7afbc506825b87df96022a6286d225d134aa5..e6380474126cc6dd32b55d9bf5fbc588ca780354 100644 (file)
@@ -871,6 +871,7 @@ class _VariantFieldClassWithSelectorTestCase:
 
     def test_const_append(self):
         fc_const = self._create_default_const_field_class()
+        str_field_class = self._tc.create_string_field_class()
         with self.assertRaises(AttributeError):
             fc_const.append_option('str', str_field_class, self._ranges1)
 
This page took 0.025272 seconds and 4 git commands to generate.