diff --git a/portalnetwork/beacon/types_test.go b/portalnetwork/beacon/types_test.go index a228f6e93c..c9a387b81a 100644 --- a/portalnetwork/beacon/types_test.go +++ b/portalnetwork/beacon/types_test.go @@ -149,5 +149,5 @@ func TestForkedHistoricalSummariesWithProof(t *testing.T) { content := hexutil.MustDecode(testData.ContentValue) err = historyProof.Deserialize(configs.Mainnet, codec.NewDecodingReader(bytes.NewReader(content), uint64(len(content)))) require.NoError(t, err) - require.Equal(t, historyProof.HistoricalSummariesWithProof.EPOCH, testData.Epoch) + require.Equal(t, uint64(historyProof.HistoricalSummariesWithProof.EPOCH), testData.Epoch) }