We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56f4334 commit 46ae686Copy full SHA for 46ae686
launch_testing/launch_testing/pytest/plugin.py
@@ -256,7 +256,7 @@ def is_same_launch_test_fixture(left_item, right_item):
256
rfn = get_launch_test_fixture(right_item)
257
if None in (lfn, rfn):
258
return False
259
- if lfn != rfn:
+ if lfn is not rfn:
260
261
if lfn._pytestfixturefunction.scope == 'function':
262
0 commit comments