From 7245dfcd402e3d3b805cacc91c56539fde50f2bf Mon Sep 17 00:00:00 2001 From: Luke Imhoff Date: Tue, 2 Oct 2018 11:50:58 -0500 Subject: [PATCH] unexistent -> nonexistent --- apps/explorer/test/explorer/chain_test.exs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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