Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Apr 25, 2024
1 parent 01fcb50 commit 653fb64
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
4 changes: 0 additions & 4 deletions umu/umu_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,6 @@ def test_update_umu_empty(self):
# Update
with (
patch.object(umu_util, "setup_runtime", return_value=None),
patch.object(umu_util, "_update_pv", return_value=None),
):
result = umu_util._update_umu(
self.test_local_share,
Expand Down Expand Up @@ -432,7 +431,6 @@ def test_update_umu(self):
# Update
with (
patch.object(umu_util, "setup_runtime", return_value=None),
patch.object(umu_util, "_update_pv", return_value=None),
):
result = umu_util._update_umu(
self.test_local_share,
Expand Down Expand Up @@ -549,7 +547,6 @@ def test_install_umu(self):
# extract to .local/share/umu
with (
patch.object(umu_util, "setup_runtime", return_value=None),
patch.object(umu_util, "_update_pv", return_value=None),
):
result = umu_util._install_umu(
self.test_user_share, self.test_local_share, json
Expand Down Expand Up @@ -1377,7 +1374,6 @@ def test_build_command(self):
# Mock setting up the runtime
with (
patch.object(umu_util, "setup_runtime", return_value=None),
patch.object(umu_util, "_update_pv", return_value=None),
):
umu_util._install_umu(self.test_user_share, self.test_local_share, json)
copytree(
Expand Down
3 changes: 0 additions & 3 deletions umu/umu_test_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ def test_build_command_entry(self):
# Don't copy _v2-entry-point
with (
patch.object(umu_util, "setup_runtime", return_value=None),
patch.object(umu_util, "_update_pv", return_value=None),
):
umu_util._install_umu(self.test_user_share, self.test_local_share, json)
copytree(
Expand Down Expand Up @@ -283,7 +282,6 @@ def test_build_command_proton(self):
# Mock setting up the runtime
with (
patch.object(umu_util, "setup_runtime", return_value=None),
patch.object(umu_util, "_update_pv", return_value=None),
):
umu_util._install_umu(self.test_user_share, self.test_local_share, json)
copytree(
Expand Down Expand Up @@ -355,7 +353,6 @@ def test_build_command_toml(self):
# Mock setting up the runtime
with (
patch.object(umu_util, "setup_runtime", return_value=None),
patch.object(umu_util, "_update_pv", return_value=None),
):
umu_util._install_umu(self.test_user_share, self.test_local_share, json)
copytree(
Expand Down

0 comments on commit 653fb64

Please sign in to comment.