sufix -> suffix

pull/848/head
Luke Imhoff 6 years ago
parent 06a6c9e64d
commit 9737e4d532
  1. 6
      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)

Loading…
Cancel
Save