Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/iris/tests/unit/concatenate/test__CubeSignature.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


class Test__coordinate_dim_metadata_equality:
@pytest.fixture
@pytest.fixture()
def sample_data(self):
# Return a standard set of test items, wrapped in a data object
@dataclass
Expand Down
6 changes: 3 additions & 3 deletions lib/iris/tests/unit/concatenate/test_concatenate.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


class TestEpoch:
@pytest.fixture
@pytest.fixture()
def simple_1d_time_cubes(self):
reftimes = [
"hours since 1970-01-01 00:00:00",
Expand Down Expand Up @@ -49,7 +49,7 @@ def test_concat_1d_with_same_time_units(self, simple_1d_time_cubes):


class TestMessages:
@pytest.fixture
@pytest.fixture()
def sample_cubes(self):
# Construct and return a pair of identical cubes
data = np.arange(24, dtype=np.float32).reshape(2, 3, 4)
Expand Down Expand Up @@ -324,7 +324,7 @@ def test_desc_bounds_all_singleton(self):


class TestConcatenate__dask:
@pytest.fixture
@pytest.fixture()
def sample_lazy_cubes(self):
# Make a pair of concatenatable cubes, with dim points [1, 2] and [3, 4, 5]
def build_lazy_cube(points):
Expand Down