Skip to content

Commit 0a4b557

Browse files
Revert unintentional edit of unrelated unit test
1 parent 26a4309 commit 0a4b557

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/test_geophires_x.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def test_geophires_x_end_use_direct_use_heat(self):
6666

6767
def test_geophires_x_end_use_electricity(self):
6868
client = GeophiresXClient()
69-
client.get_geophires_result(
69+
result = client.get_geophires_result(
7070
GeophiresInputParameters(
7171
{
7272
'Print Output to Console': 0,
@@ -80,6 +80,9 @@ def test_geophires_x_end_use_electricity(self):
8080
)
8181
)
8282

83+
assert result is not None
84+
assert result.result['metadata']['End-Use Option'] == 'ELECTRICITY'
85+
8386
def test_reservoir_model_2(self):
8487
client = GeophiresXClient()
8588
result = client.get_geophires_result(

0 commit comments

Comments
 (0)