PyTest - Writing Assertions
What will be the result of running this PyTest test code?
def test_example():
x = 5
y = 10
assert x + y == 15
assert y - x == 4