Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
WithSoull committed Feb 6, 2025
1 parent b143dad commit 8873de9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/mysync_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 8873de9

Please sign in to comment.