Fix CSV export logs test

pull/4699/head
Viktor Baranov 3 years ago
parent 79c11a9118
commit afc1c1ec95
  1. 2
      apps/explorer/test/explorer/chain/address_log_csv_explorer_test.exs

@ -74,7 +74,7 @@ defmodule Explorer.Chain.AddressLogCsvExporterTest do
assert result.index == to_string(log.index)
assert result.block_number == to_string(log.block_number)
assert result.block_hash == to_string(log.block_hash)
assert result.address == to_string(log.address)
assert result.address == String.downcase(to_string(log.address))
assert result.data == to_string(log.data)
assert result.first_topic == to_string(log.first_topic)
assert result.second_topic == to_string(log.second_topic)

Loading…
Cancel
Save