Skip to content
This repository has been archived by the owner on Jun 20, 2020. It is now read-only.

Commit

Permalink
Changed to use equal_to of should-dsl instead of be
Browse files Browse the repository at this point in the history
  • Loading branch information
fsouza committed Jul 8, 2010
1 parent c363ebb commit e6f84b3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -69,5 +69,5 @@ def and_save_this_student_with_the_code_group1(step, student_code):
def then_i_should_be_redirect_to_the_page_of_student_group1(step, student_code):
student_code = int(student_code)
expected_url = django_url('/school/students/view/%d' %student_code)
world.browser.get_current_url() |should| be(expected_url)
world.browser.get_current_url() |should| equal_to(expected_url)

0 comments on commit e6f84b3

Please sign in to comment.