Skip to content

Commit

Permalink
Merge pull request mozilla-services#2071 from rhelmer/bug1018484-32-b…
Browse files Browse the repository at this point in the history
…it-mktime-fail

fix bug 1018484 - mktime cannot use a date this far in the future on 32-...
  • Loading branch information
lonnen committed May 31, 2014
2 parents 596d55e + 59df9d1 commit d78ed26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp-django/crashstats/crashstats/tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -2334,10 +2334,10 @@ def mocked_get(url, params, **options):

# Test passed date
response = self.client.get(url, {
'date': '11/27/2085 10:10:10'
'date': '11/27/2031 10:10:10'
})
eq_(response.status_code, 200)
ok_('11/27/2085 10:10:10' in response.content)
ok_('11/27/2031 10:10:10' in response.content)

# Test value of build ids
response = self.client.get(url, {
Expand Down

0 comments on commit d78ed26

Please sign in to comment.