Skip to content

Commit 2327164

Browse files
committed
update modes
1 parent 0633361 commit 2327164

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_vera_import.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def url(action):
8787
return '/datawizard/%s/%s.json' % (run.pk, action)
8888

8989
# 2. Start import process
90-
response = self.client.get(url('start'))
90+
response = self.client.get(url('columns'))
9191
self.assertIn('result', response.data)
9292
self.assertIn('columns', response.data['result'])
9393
self.assertEqual(len(response.data['result']['columns']), 4)
@@ -127,7 +127,7 @@ def url(action):
127127
post["rel_%s" % col['rel_id']] = col_id
128128

129129
# 4. Post selected options, verify that all columns are now known
130-
response = self.client.post(url('columns'), post)
130+
response = self.client.post(url('updatecolumns'), post)
131131
unknown = response.data['result']['unknown_count']
132132
self.assertFalse(unknown, "%s unknown columns remain" % unknown)
133133

0 commit comments

Comments
 (0)