diff --git a/tests/mysync_test.go b/tests/mysync_test.go index a094847..5658437 100644 --- a/tests/mysync_test.go +++ b/tests/mysync_test.go @@ -992,6 +992,7 @@ func (tctx *testContext) stepZookeeperNodeShouldMatchWithin(node, matcher string } func (tctx *testContext) stepZookeeperNodeShouldExist(node string) error { + log.Println("node", node) err := tctx.stepIGetZookeeperNode(node) if err != nil { return err @@ -1009,6 +1010,7 @@ func (tctx *testContext) stepZookeeperNodeShouldExistWithin(node string, timeout } func (tctx *testContext) stepZookeeperNodeShouldNotExist(node string) error { + log.Println("node", node) err := tctx.stepIGetZookeeperNode(node) if err == zk.ErrNoNode { return nil