Skip to content

Commit 87154a1

Browse files
committed
Fixed tests.
1 parent c290024 commit 87154a1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: tests/ant/plus/fakes.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
##############################################################################
2626

2727
from ant.core.node import Node, Channel
28+
from ant.core.constants import RESPONSE_NO_ERROR
2829

2930
class FakeEventMachine():
3031
def __init__(self):
@@ -36,7 +37,7 @@ def writeMessage(self, msg):
3637
return self
3738

3839
def waitForAck(self, msg):
39-
return None
40+
return RESPONSE_NO_ERROR
4041

4142
def waitForMessage(self, class_):
4243
return self.waited_message

0 commit comments

Comments
 (0)