PyTest - Writing Assertions
Find the mistake in this pytest assertion:
a = 1000 b = 1000 assert a is b
a = 1000 b = 1000 assert a is b
assert a is b fails because a and b are different objects.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions