From 44a5bc791a77a54da4984879536b575713e7d2d6 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Thu, 21 Mar 2024 12:10:21 -0300 Subject: [PATCH] Update tests/test_pytest_mock.py --- tests/test_pytest_mock.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_pytest_mock.py b/tests/test_pytest_mock.py index 321403a..1d43d9e 100644 --- a/tests/test_pytest_mock.py +++ b/tests/test_pytest_mock.py @@ -284,6 +284,7 @@ def bar(self, arg): assert spy.spy_return == 20 assert foo.bar(arg=11) == 22 assert foo.bar(arg=12) == 24 + assert spy.spy_return == 24 assert spy.spy_return_list == [20, 22, 24]