Skip to content

Commit ce3dc6d

Browse files
author
=
committed
Fix Test Fabric Query Unit Tests - 0030 and 0031
1 parent 103c3c8 commit ce3dc6d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/unit/modules/dcnm/dcnm_fabric/test_fabric_query.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -410,8 +410,8 @@ def responses():
410410

411411
assert instance.results.diff[0].get("sequence_number", None) == 1
412412
assert instance.results.response[0].get("RETURN_CODE", None) == 200
413-
assert instance.results.result[0].get("found", None) is True
414-
assert instance.results.result[0].get("success", None) is True
413+
assert instance.results.result[0].get("found", None) is False
414+
assert instance.results.result[0].get("success", None) is False
415415

416416
assert False in instance.results.failed
417417
assert True not in instance.results.failed
@@ -519,8 +519,8 @@ def responses():
519519

520520
assert instance.results.diff[0].get("sequence_number", None) == 1
521521
assert instance.results.response[0].get("RETURN_CODE", None) == 200
522-
assert instance.results.result[0].get("found", None) is True
523-
assert instance.results.result[0].get("success", None) is True
522+
assert instance.results.result[0].get("found", None) is False
523+
assert instance.results.result[0].get("success", None) is False
524524

525525
assert False in instance.results.failed
526526
assert True not in instance.results.failed

0 commit comments

Comments
 (0)