PyTest - Test Organization
Identify the error in the following pytest test class:
class TestCalc:
def test_multiply(self):
assert 2 * 3 == 6
def multiply_test(self):
assert 4 * 5 == 20
