Skip to content

Commit

Permalink
Fix setup for klm testing
Browse files Browse the repository at this point in the history
  • Loading branch information
mraspaud committed Mar 18, 2024
1 parent e8aee06 commit 669ab5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pygac/tests/test_klm.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
class TestKLM:
"""Test the klm reader."""

def setup(self):
def setup_method(self):
"""Set up the tests."""
self.reader = GACKLMReader()

Expand Down Expand Up @@ -126,7 +126,7 @@ def test_quality_indicators(self):
class TestGACKLM:
"""Tests for gac klm."""

def setup(self):
def setup_method(self):
"""Set up the tests."""
self.reader = GACKLMReader()

Expand All @@ -150,7 +150,7 @@ def test_get_tsm_pixels(self, get_tsm_idx):
class TestLACKLM:
"""Tests for lac klm."""

def setup(self):
def setup_method(self):
"""Set up the tests."""
self.reader = LACKLMReader()
self.reader.scans = np.ones(100, dtype=scanline)
Expand Down

0 comments on commit 669ab5a

Please sign in to comment.