From c9d0fc9d1ca8c87fa33373cd611738d5b00e3feb Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sun, 16 Jan 2022 22:10:11 +0900 Subject: [PATCH] Fix typo in layout_view_test.exs enviroment -> environment --- .../test/block_scout_web/views/layout_view_test.exs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/block_scout_web/test/block_scout_web/views/layout_view_test.exs b/apps/block_scout_web/test/block_scout_web/views/layout_view_test.exs index ebca859376..b194934a5f 100644 --- a/apps/block_scout_web/test/block_scout_web/views/layout_view_test.exs +++ b/apps/block_scout_web/test/block_scout_web/views/layout_view_test.exs @@ -14,7 +14,7 @@ defmodule BlockScoutWeb.LayoutViewTest do end describe "logo/0" do - test "use the enviroment logo when it's configured" do + test "use the environment logo when it's configured" do Application.put_env(:block_scout_web, BlockScoutWeb.Chain, logo: "custom/logo.png") assert LayoutView.logo() == "custom/logo.png" @@ -26,7 +26,7 @@ defmodule BlockScoutWeb.LayoutViewTest do end describe "subnetwork_title/0" do - test "use the enviroment subnetwork title when it's configured" do + test "use the environment subnetwork title when it's configured" do Application.put_env(:block_scout_web, BlockScoutWeb.Chain, subnetwork: "Subnetwork Test") assert LayoutView.subnetwork_title() == "Subnetwork Test" @@ -38,7 +38,7 @@ defmodule BlockScoutWeb.LayoutViewTest do end describe "network_title/0" do - test "use the enviroment network title when it's configured" do + test "use the environment network title when it's configured" do Application.put_env(:block_scout_web, BlockScoutWeb.Chain, network: "Custom Network") assert LayoutView.network_title() == "Custom Network" @@ -78,7 +78,7 @@ defmodule BlockScoutWeb.LayoutViewTest do ~s(v1.3.4-beta)} end - test "use the enviroment release link when it's configured" do + test "use the environment release link when it's configured" do Application.put_env( :block_scout_web, :release_link,