From e254f4cc4fa6e2446fd4689cc7cabf3abbc24af6 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Mon, 6 Jul 2020 08:41:29 +0200 Subject: Fix failing tests --- .../api/v2/simulations/simulationId/topologies/test_endpoint.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'web-server/opendc/api/v2/simulations/simulationId') diff --git a/web-server/opendc/api/v2/simulations/simulationId/topologies/test_endpoint.py b/web-server/opendc/api/v2/simulations/simulationId/topologies/test_endpoint.py index 74a1e398..1314be13 100644 --- a/web-server/opendc/api/v2/simulations/simulationId/topologies/test_endpoint.py +++ b/web-server/opendc/api/v2/simulations/simulationId/topologies/test_endpoint.py @@ -25,9 +25,8 @@ def test_add_topology(client, mocker): 'topologyIds': [] }) mocker.patch.object(DB, 'update', return_value={}) - res = client.post('/api/v2/simulations/1/topologies', json={'topology': {'name': 'test simulation'}}) - assert 'datetimeCreated' in res.json['content'] - assert 'datetimeLastEdited' in res.json['content'] + res = client.post('/api/v2/simulations/1/topologies', json={'topology': {'name': 'test simulation', 'rooms': []}}) + assert 'rooms' in res.json['content'] assert '200' in res.status -- cgit v1.2.3