Skip to content

Commit

Permalink
chore: rename variable in test
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz committed Nov 7, 2024
1 parent 0c0f21d commit cd8e516
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lnclient/ldk/ldk_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

func TestGetVssNodeIdentifier(t *testing.T) {
mnemonic := "thought turkey ask pottery head say catalog desk pledge elbow naive mimic"
expectedPubkey := "0488b2"
expectedVssNodeIdentifier := "0488b2"

defer tests.RemoveTestService()
svc, err := tests.CreateTestServiceWithMnemonic(mnemonic, "123")
Expand All @@ -19,5 +19,5 @@ func TestGetVssNodeIdentifier(t *testing.T) {
vssNodeIdentifier, err := GetVssNodeIdentifier(svc.Keys)
require.NoError(t, err)

assert.Equal(t, expectedPubkey, vssNodeIdentifier)
assert.Equal(t, expectedVssNodeIdentifier, vssNodeIdentifier)
}

0 comments on commit cd8e516

Please sign in to comment.