Skip to content

Commit

Permalink
fix: don't use unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-murray committed Jul 11, 2024
1 parent 61771c4 commit d8c31bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hera_pspec/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ def test_load_config():
assert cfg['pspec']['options']['foo'] == None


class Test_Utils(unittest.TestCase):
class Test_Utils:

def setUp(self):
def setup_class(self):
# Load data into UVData object
self.uvd = UVData()
self.uvd.read_miriad(os.path.join(DATA_PATH,
Expand Down

0 comments on commit d8c31bd

Please sign in to comment.