Skip to content

Commit

Permalink
Merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Burke committed Dec 17, 2013
1 parent ece19c5 commit 33f8520
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions tests/test_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,7 @@ def test_bad_boolean(self):


def test_date_later_than_1900(self):
<<<<<<< HEAD
assert_equal(types.date("1900-01-01"), datetime.datetime(1900, 1, 1))
=======
self.assertEquals(types.date("1900-01-01"), datetime(1900, 1, 1))
>>>>>>> master
assert_equal(types.date("1900-01-01"), datetime(1900, 1, 1))


def test_date_too_early(self):
Expand All @@ -145,11 +141,7 @@ def test_date_input_error(self):
assert_raises(ValueError, lambda: types.date("2008-13-13"))

def test_date_input(self):
<<<<<<< HEAD
assert_equal(types.date("2008-08-01"), datetime.datetime(2008, 8, 1))
=======
self.assertEquals(types.date("2008-08-01"), datetime(2008, 8, 1))
>>>>>>> master
assert_equal(types.date("2008-08-01"), datetime(2008, 8, 1))

def test_natual_negative(self):
assert_raises(ValueError, lambda: types.natural(-1))
Expand Down

0 comments on commit 33f8520

Please sign in to comment.