diff --git a/lntest/itest/lnd_test.go b/lntest/itest/lnd_test.go index 9be907f9..6440ea61 100644 --- a/lntest/itest/lnd_test.go +++ b/lntest/itest/lnd_test.go @@ -4930,7 +4930,7 @@ func testListChannels(net *lntest.NetworkHarness, t *harnessTest) { MaxAcceptedHtlcs: input.MaxHTLCNumber / 2, } assertChannelConstraintsEqual( - t, aliceChannel.LocalConstraints, defaultConstraints, + t, defaultConstraints, aliceChannel.LocalConstraints, ) // customizedConstraints is a ChannelConstraints with customized values. @@ -4946,7 +4946,7 @@ func testListChannels(net *lntest.NetworkHarness, t *harnessTest) { MaxAcceptedHtlcs: input.MaxHTLCNumber / 2, } assertChannelConstraintsEqual( - t, aliceChannel.RemoteConstraints, customizedConstraints, + t, customizedConstraints, aliceChannel.RemoteConstraints, ) // Get the ListChannel response for Bob.