Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 committed Oct 7, 2024
1 parent 80a9f7f commit e3605d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,8 @@ def test_remove_temp_files_fail(tmpdir, mapdl):


def test_env_injection():
assert update_env_vars(None, None) is None
no_inject = update_env_vars(None, None)
assert no_inject == os.environ.copy() # return os.environ

assert "myenvvar" in update_env_vars({"myenvvar": "True"}, None)

Expand Down

0 comments on commit e3605d0

Please sign in to comment.