Skip to content

Commit

Permalink
Merge pull request mozilla-services#463 from ossreleasefeed/fix-test-…
Browse files Browse the repository at this point in the history
…products

fixes unit test to not make build unstable
  • Loading branch information
adngdb committed Mar 27, 2012
2 parents 5fc4c00 + 30cf15d commit 1856640
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions socorro/unittest/external/postgresql/test_products.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def setUp(self):
'11.0.1',
'%s',
'%s',
False
False,
'Release',
20.00
),
Expand All @@ -65,7 +65,7 @@ def setUp(self):
'%s',
False,
'Release',
30.00
30.00
);
""" % (now, now,
now, now,
Expand All @@ -87,7 +87,7 @@ def tearDown(self):
def test_get(self):
products = Products(config=self.config)
now = datetimeutil.utc_now()
now = datetime.datetime(now.year, now.month, now.day, tzinfo=now.tzinfo)
now = datetime.datetime(now.year, now.month, now.day)
now_str = datetimeutil.date_to_string(now)

#......................................................................
Expand Down

0 comments on commit 1856640

Please sign in to comment.