Skip to content

Commit c8d3636

Browse files
committed
Extra test fix.
1 parent 49cd0bd commit c8d3636

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

iris_grib/tests/unit/load_convert/test_reference_time_coord.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# (C) British Crown Copyright 2014 - 2016, Met Office
1+
# (C) British Crown Copyright 2014 - 2017, Met Office
22
#
33
# This file is part of iris-grib.
44
#
@@ -60,12 +60,12 @@ def _check(self, section, standard_name=None):
6060
coord = reference_time_coord(section)
6161
self.assertEqual(coord, expected)
6262

63-
def test_start_of_forecast(self):
63+
def test_start_of_forecast__0(self):
6464
section = deepcopy(self.section)
6565
section['significanceOfReferenceTime'] = 0
6666
self._check(section, 'forecast_reference_time')
6767

68-
def test_start_of_forecast(self):
68+
def test_start_of_forecast__1(self):
6969
section = deepcopy(self.section)
7070
section['significanceOfReferenceTime'] = 1
7171
self._check(section, 'forecast_reference_time')

0 commit comments

Comments
 (0)