Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Aug 25, 2016
1 parent 6c5b598 commit 85d87cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ exclude_lines =
if False:
if __name__ == .__main__.:

show_missing = True

[paths]
source =
py_src/
Expand Down
4 changes: 2 additions & 2 deletions py_src/test/test_mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ def register(msg, handler):
g.send('test')
time.sleep(1)
print("----------------------1st ended----------------------")
assert all(not f.recv(), g.recv())
assert all((not f.recv(), g.recv()))
time.sleep(1)
print("----------------------2nd event----------------------")
g.send('not test')
time.sleep(1)
print("----------------------2nd ended----------------------")
assert all(f.recv(), not g.recv())
assert all((f.recv(), not g.recv()))
close_all_nodes([f, g])

def test_hanlder_registry_Plaintext(iters=3):
Expand Down

0 comments on commit 85d87cf

Please sign in to comment.