bt2: ignore comparison to None flake8 warnings in test_value.py
authorSimon Marchi <simon.marchi@efficios.com>
Tue, 24 Sep 2019 18:17:38 +0000 (14:17 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 3 Oct 2019 14:45:11 +0000 (10:45 -0400)
commit13b81b5d9cca1fe1bafe18734edb90717eb771da
tree97ee7d73988d0f2e3c4c2a277815db9c0be9dd37
parent6e21bd8fa258cb12e7f0ac13b9c485a5783edbaa
bt2: ignore comparison to None flake8 warnings in test_value.py

Fix these:

    ./tests/bindings/python/bt2/test_value.py:485:36: E711 comparison to None should be 'if cond is None:'
    ./tests/bindings/python/bt2/test_value.py:488:35: E711 comparison to None should be 'if cond is not None:'
    ./tests/bindings/python/bt2/test_value.py:1177:36: E711 comparison to None should be 'if cond is None:'
    ./tests/bindings/python/bt2/test_value.py:1180:35: E711 comparison to None should be 'if cond is not None:'

In these tests, we specifically want to test that comparing (equal/not
equal) to None yields the expected result.

Reported-by: flake8
Change-Id: I47d96598a158b10116fc6a948d42ef61f608fb07
Signed-off-by: Simon Marchi <simon.marchi@efficios.com>
Reviewed-on: https://review.lttng.org/c/babeltrace/+/2087
tests/bindings/python/bt2/test_value.py
This page took 0.023719 seconds and 4 git commands to generate.