Change CSS after rebase.

This commit is contained in:
Jay Zoldak
2013-08-29 17:41:54 -04:00
parent e0372b00ef
commit 7bc997d0fb
2 changed files with 5 additions and 5 deletions

View File

@@ -65,7 +65,7 @@ def select_the_verified_track(step):
select_contribution(32)
btn_css = 'input[value="Select Certificate"]'
world.css_click(btn_css)
assert world.is_css_present('li.current#progress-step0')
assert world.is_css_present('section.progress')
@step(u'I should see the course on my dashboard$')
@@ -77,9 +77,9 @@ def should_see_the_course_on_my_dashboard(step):
@step(u'I go to step "([^"]*)"$')
def goto_next_step(step, step_num):
btn_css = {
'1': 'p.m-btn-primary a',
'2': '#face_next_button a.next',
'3': '#photo_id_next_button a.next',
'1': '#face_next_button',
'2': '#face_next_button',
'3': '#photo_id_next_button',
'4': '#pay_button',
}
next_css = {

View File

@@ -63,7 +63,7 @@ class PaymentFakeView(View):
served by the shopping cart app.
"""
if self._is_signature_valid(request.POST):
return self._payment_page_response(request.POST, '/postpay_callback')
return self._payment_page_response(request.POST, '/shoppingcart/postpay_callback/')
else:
return render_to_response('shoppingcart/test/fake_payment_error.html')