Skip to content

Commit

Permalink
Revert "umu_test: update set_env test with UMU_NO_RUNTIME"
Browse files Browse the repository at this point in the history
This reverts commit aacb3c4.
  • Loading branch information
R1kaB3rN committed Jun 12, 2024
1 parent fad67f8 commit cf02b1e
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions umu/umu_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ def setUp(self):
"LD_PRELOAD": "",
"WINEDLLPATH": "",
"WINETRICKS_SUPER_QUIET": "",
"UMU_NO_RUNTIME": "",
}
self.user = getpwuid(os.getuid()).pw_name
self.test_opts = "-foo -bar"
Expand Down Expand Up @@ -1649,7 +1648,6 @@ def test_set_env(self):
os.environ["GAMEID"] = test_str
os.environ["STORE"] = test_str
os.environ["PROTON_VERB"] = self.test_verb
os.environ["UMU_NO_RUNTIME"] = "pressure-vessel"
# Args
result = umu_run.parse_args()
self.assertIsInstance(result, tuple, "Expected a tuple")
Expand Down Expand Up @@ -1763,11 +1761,6 @@ def test_set_env(self):
self.env["STEAM_COMPAT_TOOL_PATHS"],
"Expected STEAM_COMPAT_MOUNTS to be set",
)
self.assertEqual(
self.env["UMU_NO_RUNTIME"],
os.environ["UMU_NO_RUNTIME"],
"Expected UMU_NO_RUNTIME to be set",
)

def test_set_env_winetricks(self):
"""Test set_env when using winetricks."""
Expand Down

0 comments on commit cf02b1e

Please sign in to comment.