aboutsummaryrefslogtreecommitdiffstats
path: root/core/nonblocking-application_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/nonblocking-application_test.go')
-rw-r--r--core/nonblocking-application_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/nonblocking-application_test.go b/core/nonblocking-application_test.go
index 6d6a5ef..336eea0 100644
--- a/core/nonblocking-application_test.go
+++ b/core/nonblocking-application_test.go
@@ -86,6 +86,7 @@ func (s *NonBlockingAppTestSuite) TestNonBlockingApplication() {
for _, hash := range hashes {
nbapp.StronglyAcked(hash)
nbapp.DeliverBlock(hash, time.Now().UTC())
+ nbapp.NotaryAckDeliver(&types.NotaryAck{Hash: hash})
}
nbapp.TotalOrderingDeliver(hashes, true)
@@ -97,6 +98,7 @@ func (s *NonBlockingAppTestSuite) TestNonBlockingApplication() {
s.Contains(app.stronglyAcked, hash)
s.Contains(app.totalOrderingDeliver, hash)
s.Contains(app.deliverBlock, hash)
+ s.Contains(app.notaryAck, hash)
}
}