From e82705f5e4e41b8d87268a14dbf0cfc2f0eeb782 Mon Sep 17 00:00:00 2001 From: Matt Toohey Date: Fri, 12 Jul 2024 12:18:45 +1000 Subject: [PATCH] fix test --- common/configuration/asm_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/configuration/asm_test.go b/common/configuration/asm_test.go index 6d3e21623c..de8daa9d97 100644 --- a/common/configuration/asm_test.go +++ b/common/configuration/asm_test.go @@ -186,7 +186,7 @@ func TestFollowerSync(t *testing.T) { // fakeRPCClient connects the follower to the leader fakeRPCClient := &fakeAdminClient{sm: leaderManager} followerClock := clock.NewMock() - follower := newASMFollower(ctx, fakeRPCClient) + follower := newASMFollower(ctx, fakeRPCClient, "fake") followerASM := newASMForTesting(ctx, externalClient, URL("http://localhost:1235"), leaser, optional.Some[asmClient](follower)) asmClient, err := followerASM.coordinator.Get()