From 46ac91e86e901ed6ee70e2767c9d4b12bafcacf6 2020-04-28 21:20:59 From: Brett Smith Date: 2020-04-28 21:20:59 Subject: [PATCH] test_rtutil: Simplify setup. --- diff --git a/tests/test_rtutil.py b/tests/test_rtutil.py index 70b09c7f08a2c900e0a51923f207a780fb78ab6f..e70c488ed6acc29f296dddb2b43ec8a822e33238 100644 --- a/tests/test_rtutil.py +++ b/tests/test_rtutil.py @@ -209,7 +209,7 @@ def test_results_not_found_only_in_transient_cache(new_client): assert not rt1.exists(9) assert rt2.exists(9) -def test_txn_with_urls(new_client): +def test_txn_with_urls(rt): txn_meta = { 'rt-id': 'rt:1', 'contract': 'RepoLink.pdf', @@ -219,7 +219,6 @@ def test_txn_with_urls(new_client): ('Income:Donations', -10, {'receipt': 'rt:2/13 donation.txt'}), ('Assets:Cash', 10, {'receipt': 'cash.png rt:2/14'}), ]) - rt = rtutil.RT(new_client) actual = rt.txn_with_urls(txn) def check(source, key, ticket_id, attachment_id=None): url_path = EXPECTED_URLS_MAP[(ticket_id, attachment_id)]