Remove some debugging code from transactions tests

This commit is contained in:
Mark Veidemanis 2022-02-24 22:28:41 +00:00
parent 8f3faaab6d
commit 61253a5db3
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
1 changed files with 0 additions and 2 deletions

View File

@ -101,7 +101,6 @@ class TestTransactions(TestCase):
return test_data
def mock_hgetall(self, string):
print("MOCK HGERALL CALLED WITH", string)
ref = string.split(".")[1]
for num, trade in self.trades.items():
if trade["reference"] == ref:
@ -114,7 +113,6 @@ class TestTransactions(TestCase):
return [v["id"] for k, v in self.trades.items() if k in self.return_trades]
def mock_get(self, string):
print("MOCK GET", string)
for num, trade in self.trades.items():
if trade["id"] == string:
return trade["reference"]