From 9737e4d532fa1238da8012ddf9bd4c8b1b62c9f0 Mon Sep 17 00:00:00 2001 From: Luke Imhoff Date: Tue, 2 Oct 2018 11:56:32 -0500 Subject: [PATCH] sufix -> suffix --- .../explorer/smart_contract/solidity/code_compiler_test.exs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/explorer/test/explorer/smart_contract/solidity/code_compiler_test.exs b/apps/explorer/test/explorer/smart_contract/solidity/code_compiler_test.exs index 9bd7862f47..98a83bdd6d 100644 --- a/apps/explorer/test/explorer/smart_contract/solidity/code_compiler_test.exs +++ b/apps/explorer/test/explorer/smart_contract/solidity/code_compiler_test.exs @@ -126,11 +126,11 @@ defmodule Explorer.SmartContract.Solidity.CodeCompilerTest do assert contract_inner_info == response end - test "the contract info is returned when the name matches with a `:` sufix" do + test "the contract info is returned when the name matches with a `:` suffix" do name = "Name" - name_with_sufix = ":Name" + name_with_suffix = ":Name" contract_inner_info = %{"abi" => %{}, "bytecode" => "", "opcodes" => ""} - contract_info = %{name_with_sufix => contract_inner_info} + contract_info = %{name_with_suffix => contract_inner_info} response = CodeCompiler.get_contract_info(contract_info, name)