Skip to content
This repository was archived by the owner on Aug 29, 2019. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/test_aweber_entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def test_each_should_be_entry(self):
self.assertEqual(entry.type, 'web_form')

def test_each_should_have_correct_url(self):
url_regex = '/accounts\/1\/lists\/\d*/web_forms/\d*'
url_regex = '\/accounts\/1\/lists\/\d*/web_forms/\d*'
for entry in self.forms:
self.assertTrue(re.match(url_regex, entry.url))

Expand All @@ -89,7 +89,7 @@ def test_each_should_be_entry(self):
self.assertEqual(entry.type, 'web_form_split_test')

def test_each_should_have_correct_url(self):
url_regex = '/accounts\/1\/lists\/\d*/web_form_split_tests/\d*'
url_regex = '\/accounts\/1\/lists\/\d*/web_form_split_tests/\d*'
for entry in self.forms:
self.assertTrue(re.match(url_regex, entry.url))

Expand Down