Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
asoliman92 committed Dec 19, 2024
1 parent 365d3b0 commit c50ac60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions commit/chainfee/observation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,11 @@ func Test_processor_Observation(t *testing.T) {
require.GreaterOrEqual(t, obs.TimestampNow.UnixNano(), tStart.UnixNano())
require.LessOrEqual(t, obs.TimestampNow.UnixNano(), tEnd.UnixNano())
require.Equal(t, tc.chainFeeComponents, obs.FeeComponents)
require.Equal(t, maps.Keys(tc.chainFeeComponents), slicesWithoutDst)
require.Equal(t, slicesWithoutDst, maps.Keys(obs.FeeComponents))
require.Equal(t, tc.nativeTokenPrices, obs.NativeTokenPrices)
require.Equal(t, maps.Keys(tc.nativeTokenPrices), slicesWithoutDst)
require.Equal(t, slicesWithoutDst, maps.Keys(obs.NativeTokenPrices))
require.Equal(t, tc.expectedChainFeePriceUpdates, obs.ChainFeeUpdates)
require.Equal(t, maps.Keys(tc.expectedChainFeePriceUpdates), slicesWithoutDst)
require.Equal(t, slicesWithoutDst, maps.Keys(obs.ChainFeeUpdates))
require.Equal(t, tc.fChain, obs.FChain)
})
}
Expand Down

0 comments on commit c50ac60

Please sign in to comment.