Skip to content

Commit

Permalink
Removing check
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkae committed Oct 7, 2024
1 parent 79efe54 commit 08c1aea
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/ipc/test_get_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ def test_regular_container(self, server):
# Open gedit first
my_env = os.environ.copy()
my_env['WAYLAND_DISPLAY'] = server.wayland
print(server.wayland)
p = subprocess.Popen(['gedit'], env=my_env)
sleep(1) # Give gedit some time to settle down and open

Expand All @@ -39,7 +38,6 @@ def test_percent_two_containers(self, server):
# Open gedit first
my_env = os.environ.copy()
my_env['WAYLAND_DISPLAY'] = server.wayland
print(server.wayland)
p1 = subprocess.Popen(['gedit'], env=my_env)
p2 = subprocess.Popen(['gnome-chess'], env=my_env)
sleep(1) # Give gedit some time to settle down and open
Expand All @@ -51,5 +49,4 @@ def test_percent_two_containers(self, server):

assert len(workspace.nodes) == 2
app = workspace.nodes[1]
assert app.focused == True
assert app.percent == 0.5

0 comments on commit 08c1aea

Please sign in to comment.