Microservices - Testing Microservices
Identify the error in this unit test snippet for a microservice method:
def test_calculate():
service = CalculationService()
result = service.calculate(5)
assert result = 25