Skip to content

Commit 332ddf2

Browse files
committed
!= -> is not
Signed-off-by: Ivan Santiago Paunovic <[email protected]>
1 parent dda4cd9 commit 332ddf2

File tree

1 file changed

+1
-1
lines changed
  • launch_testing/launch_testing/pytest

1 file changed

+1
-1
lines changed

launch_testing/launch_testing/pytest/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def is_same_launch_test_fixture(left_item, right_item):
256256
rfn = get_launch_test_fixture(right_item)
257257
if None in (lfn, rfn):
258258
return False
259-
if lfn != rfn:
259+
if lfn is not rfn:
260260
return False
261261
if lfn._pytestfixturefunction.scope == 'function':
262262
return False

0 commit comments

Comments
 (0)