Skip to content

Commit 88f9da2

Browse files
authored
Update tests to support Babel 2.15.0 (#203)
1 parent bc5b0e5 commit 88f9da2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fluent.runtime/tests/test_types.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def test_timeZone(self):
235235
fd1b = fluent_date(dt1, dateStyle="full", timeStyle="full")
236236
self.assertRegex(
237237
fd1b.format(en_GB),
238-
"^Monday, 2 July 2018(,| at) 00:30:00 British Summer Time$",
238+
"^Monday,? 2 July 2018(,| at) 00:30:00 British Summer Time$",
239239
)
240240
fd1c = fluent_date(dt1, dateStyle="short")
241241
self.assertEqual(fd1c.format(en_GB), "02/07/2018")
@@ -253,7 +253,7 @@ def test_timeZone(self):
253253
)
254254
self.assertRegex(
255255
fd2b.format(en_GB),
256-
"^Monday, 2 July 2018(,| at) 00:30:00 British Summer Time$",
256+
"^Monday,? 2 July 2018(,| at) 00:30:00 British Summer Time$",
257257
)
258258
fd2c = fluent_date(dt2, dateStyle="short", timeZone="Europe/London")
259259
self.assertEqual(fd2c.format(en_GB), "02/07/2018")

0 commit comments

Comments
 (0)