Skip to content

Commit

Permalink
Remove redundant debugging statement
Browse files Browse the repository at this point in the history
  • Loading branch information
perklet committed Dec 31, 2023
1 parent 1c05a91 commit d7c6de5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ preprocess: .preprocessed
upload: dist/*.whl
twine upload dist/*.whl

test: install-local
pytest tests/unittest
test:
python -bb -m pytest tests/unittest

install-local: .preprocessed
pip install -e .
Expand Down
2 changes: 0 additions & 2 deletions tests/unittest/test_websockets.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,8 @@ def test_hello_twice(ws_server):

w.send(b"Bar")
reply, _ = w.recv()
print(reply)

for _ in range(10):
w.send(b"Bar")
reply, _ = w.recv()
assert reply == b"Bar"
print(reply)

0 comments on commit d7c6de5

Please sign in to comment.