diff --git a/apps/explorer/test/explorer/chain_test.exs b/apps/explorer/test/explorer/chain_test.exs index eec5303358..c2b4326c6d 100644 --- a/apps/explorer/test/explorer/chain_test.exs +++ b/apps/explorer/test/explorer/chain_test.exs @@ -1747,10 +1747,10 @@ defmodule Explorer.ChainTest do assert {:error, :not_found} == response end - test "doesn't find a unexistent address" do - unexistent_address_hash = Factory.address_hash() + test "doesn't find a nonexistent address" do + nonexistent_address_hash = Factory.address_hash() - response = Chain.find_contract_address(unexistent_address_hash) + response = Chain.find_contract_address(nonexistent_address_hash) assert {:error, :not_found} == response end