Skip to content

Commit

Permalink
MAINT: linting/formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrivenaes committed Jan 10, 2025
1 parent 1d97835 commit e2d980f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ignore_missing_imports = True
strict_equality = True
warn_redundant_casts = True
warn_unused_configs = True
warn_unused_ignores = True
warn_unused_ignores = False

exclude = tests|docs|examples|bin

Expand Down
6 changes: 3 additions & 3 deletions tests/test_grid3d/test_ecl_inte_head.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ def test_intehead_iphs_when_e300():
intehead_values = [0] * 100
intehead_values[94] = 300 # simulator is Ecl 300
intehead_values[14] = 8 # 14 is IPHS code in E100 but no. tracers in E300, here 8
assert InteHead(intehead_values).phases == Phases.OIL_WATER_GAS, (
"phases always OIL_WATER_GAS in Eclipse 300"
)
assert (
InteHead(intehead_values).phases == Phases.OIL_WATER_GAS
), "phases always OIL_WATER_GAS in Eclipse 300"


def test_intehead_iphs_fail_when_outsiderange_e100():
Expand Down

0 comments on commit e2d980f

Please sign in to comment.