File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments