From 489f4677c040d2ad6133a93b18267cd3bbaa225c Mon Sep 17 00:00:00 2001 From: meejah Date: Sat, 24 Aug 2019 12:37:28 -0600 Subject: [PATCH] split test, remove debug --- integration/test_web.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/integration/test_web.py b/integration/test_web.py index 370668c76..e3a340d44 100644 --- a/integration/test_web.py +++ b/integration/test_web.py @@ -404,12 +404,18 @@ def test_storage_info(storage_nodes): retrieve and confirm /storage URI for one storage node """ storage0 = storage_nodes[0] - print(storage0) - print(dir(storage0)) - resp = requests.get( + requests.get( util.node_url(storage0.node_dir, u"storage"), ) + + +def test_storage_info_json(storage_nodes): + """ + retrieve and confirm /storage?t=json URI for one storage node + """ + storage0 = storage_nodes[0] + resp = requests.get( util.node_url(storage0.node_dir, u"storage"), params={u"t": u"json"},