update test to account for new user in fixture

This commit is contained in:
Allen Short 2012-01-30 21:25:13 -06:00
Родитель 69a56159ee
Коммит ab5358d6b5
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1334,7 +1334,7 @@ class TestLookup(amo.tests.TestCase):
eq_(self.client.get('%s?q=admin' % self.url).status_code, 403)
def test_search(self):
for q, c in [('', 3), ('admin@mozilla.com', 1)]:
for q, c in [('', 4), ('admin@mozilla.com', 1)]:
res = self.client.get('%s?q=%s' % (self.url, q))
eq_(res.status_code, 200)
content = json.loads(res.content)