Skip to content

Commit

Permalink
Remove rogue print statements from tests
Browse files Browse the repository at this point in the history
There are some tests that still have print statements but these look
intentional. However, the ones removed by this PR were clearly left over
from when the tests were being written!
  • Loading branch information
elParaguayo committed Mar 8, 2024
1 parent 435a3c8 commit 66c3ca0
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion test/extension/test_dmenu.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,5 +109,4 @@ def test_j4dmenu_configuration_options():
extension = J4DmenuDesktop(**config)
extension._configure(None)
index = extension.configured_command.index(output[0])
print(extension.configured_command)
assert output == extension.configured_command[index : index + len(output)]
1 change: 0 additions & 1 deletion test/layouts/test_ratiotile.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,6 @@ def test_ratiotile_alternative_calculation(manager):

for i in range(12):
manager.test_window(str(i))
print(manager.c.layout.info()["layout_info"])
if i == 0:
assert manager.c.layout.info()["layout_info"] == [(0, 0, 800, 600)]
elif i == 4:
Expand Down
1 change: 0 additions & 1 deletion test/widgets/test_mpd2widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ def pause(self):
self._status["state"] = "pause"

def play(self):
print("PLAYING")
self._status["state"] = "play"

def stop(self):
Expand Down

0 comments on commit 66c3ca0

Please sign in to comment.