Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 20, 2023
1 parent eb69b3f commit e894ad1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions romancal/regtest/test_regtestdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@


def test_compare_asdf_identical(tmp_path):
fn0 = tmp_path / 'test0.asdf'
fn1 = tmp_path / 'test1.asdf'
fn0 = tmp_path / "test0.asdf"
fn1 = tmp_path / "test1.asdf"
l2 = rdm.ImageModel(maker_utils.mk_level2_image(shape=(100, 100)))
l2.save(fn0)
l2.save(fn1)
Expand All @@ -15,8 +15,8 @@ def test_compare_asdf_identical(tmp_path):


def test_compare_asdf_differ(tmp_path):
fn0 = tmp_path / 'test0.asdf'
fn1 = tmp_path / 'test1.asdf'
fn0 = tmp_path / "test0.asdf"
fn1 = tmp_path / "test1.asdf"
l2 = rdm.ImageModel(maker_utils.mk_level2_image(shape=(100, 100)))
l2.save(fn0)
l2.data += 1 * l2.data.unit
Expand Down

0 comments on commit e894ad1

Please sign in to comment.