Skip to content

Commit 98d55ea

Browse files
committed
fixup! Add RFT QC tool
1 parent baf9335 commit 98d55ea

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/ert/gui/tools/manage_experiments/rft_qc_widget.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,12 @@ def divider_color() -> str:
9999

100100

101101
class _PointStatus(StrEnum):
102-
MATCHED = "Has Response"
103-
INVALID_ZONE = "Invalid Zone"
104-
NOT_IN_GRID = "Not in grid"
105-
NO_RESPONSE = "No Response"
106-
RESPONSE = "Response"
107-
FILE_RFT = "File RFT"
102+
MATCHED = "Observation with response"
103+
INVALID_ZONE = "Observation in unexpected zone"
104+
NOT_IN_GRID = "Observation not in grid"
105+
NO_RESPONSE = "Observation without response"
106+
RESPONSE = "Responses known by ERT"
107+
FILE_RFT = "All responses from RFT file"
108108

109109

110110
_OBSERVATION_STATUSES = frozenset(

tests/ert/ui_tests/gui/test_rft_qc_widget.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,7 @@ def test_that_selecting_point_shows_point_details(qtbot):
10341034
Observation Coordinates: 1.0,1.0,1.0
10351035
Error: 5
10361036
Expected Zone: zone1
1037-
Status: Has Response
1037+
Status: Observation with response
10381038
"""
10391039

10401040
assert _normalize_ws(widget._details.toPlainText()) == _normalize_ws(
@@ -1055,7 +1055,7 @@ def test_that_selecting_point_shows_point_details(qtbot):
10551055
Observation Coordinates: 1.0,1.0,2.0
10561056
Error: 5
10571057
Expected Zone: zone2
1058-
Status: Has Response
1058+
Status: Observation with response
10591059
RFT in file:
10601060
WELL - 2000-01-01 - PRESSURE
10611061
File Response: 15

0 commit comments

Comments
 (0)