From adfd773bc03071967ea43f062cf8d18c9e37da96 Mon Sep 17 00:00:00 2001 From: catcoswavist Date: Thu, 3 Aug 2023 21:30:32 +0900 Subject: [PATCH] =?UTF-8?q?#16=20=E7=AC=AC2=E7=AB=A0=20p.44=E3=81=BE?= =?UTF-8?q?=E3=81=A7=E5=AE=8C=E4=BA=86=20=E3=83=AD=E3=82=B0=E5=89=8A?= =?UTF-8?q?=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- catcoswavist/test_money.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/catcoswavist/test_money.py b/catcoswavist/test_money.py index b034772..6be0122 100644 --- a/catcoswavist/test_money.py +++ b/catcoswavist/test_money.py @@ -12,9 +12,7 @@ def test_multiplication(self): product = five.times(2) assert 10 == product.amount # この段階のproductはtostringを通していないのでただのアドレス(読めない) - print("プロダクト10",product.amount) product = five.times(3) assert 15 == product.amount - print("プロダクト15",product.amount) - + TestMoney().test_multiplication() \ No newline at end of file