Skip to content

Commit

Permalink
Fix identation
Browse files Browse the repository at this point in the history
Signed-off-by: Eduardo Borsa <[email protected]>
  • Loading branch information
edborsa committed Dec 13, 2023
1 parent 3e97dfe commit b20b839
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/beacon/types/site_test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
defmodule Beacon.Types.SiteTest do
use ExUnit.Case, async: true

alias Beacon.Types.Site
import Beacon.Types.Site, only: [valid?: 1]

Expand All @@ -23,7 +24,7 @@ defmodule Beacon.Types.SiteTest do
assert Site.load("site") == {:ok, :site}
assert Site.load(0) == :error
end

describe "valid_name?/1" do
test "SUCCESS: Return TRUE if it is a valid name" do
assert Site.valid_name?("some_name")
Expand All @@ -32,4 +33,5 @@ defmodule Beacon.Types.SiteTest do
test "SUCCESS: Return FALSE if it is an invalid name" do
refute Site.valid_name?("beacon_some_name")
end
end
end

0 comments on commit b20b839

Please sign in to comment.