From e4f38481a629266d4f2b8231b92386d566f1568f Mon Sep 17 00:00:00 2001 From: Markus Holtermann Date: Sat, 26 Jan 2013 02:11:37 +0100 Subject: the ``bvggrabber.api.Departure`` does not need to have a byte representation of the start --- tests/test_api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/test_api.py b/tests/test_api.py index c4cd445..6180ae2 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -185,7 +185,7 @@ class TestDeparture(BaseTestDeparture): 'when_full': "2013-01-02 03:04:45", 'when_hour': "03:04", 'remaining': 0} - dep1 = Departure(b"From My Station", "To Your Station", + dep1 = Departure("From My Station", "To Your Station", self.since + self.delta1, "A Line", since=self.since) self.assertEqual(json1, json.loads(dep1.to_json)) str1 = "Start: From My Station, End: To Your Station, when: 03:04, " \ @@ -200,7 +200,7 @@ class TestDeparture(BaseTestDeparture): 'when_full': "2013-01-02 03:05:20", 'when_hour': "03:05", 'remaining': 60} - dep2 = Departure(b"From My Station", "To Your Station", + dep2 = Departure("From My Station", "To Your Station", self.since + self.delta2, "A Line", since=self.since) self.assertEqual(json2, json.loads(dep2.to_json)) str2 = "Start: From My Station, End: To Your Station, when: 03:05, " \ -- cgit v1.2.3