Skip to content

Commit

Permalink
Fixed format
Browse files Browse the repository at this point in the history
  • Loading branch information
jbiset committed Aug 9, 2024
1 parent 55b0578 commit a8c207f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/elixir_modules_and_functions_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ defmodule ModulesAndFunctionsTest do
assert Math.sum(0, 0) == 0
end

test "Math.zero?/1 returns true if the number is zero" do
test "Math.zero?/1 returns true if the number is zero" do
assert Math.zero?(0) == true
end

Expand All @@ -63,7 +63,7 @@ defmodule ModulesAndFunctionsTest do
end

test "Math.do_sum/2 cannot be called outside of the Math module" do
assert_raise UndefinedFunctionError, fn -> Math.do_sum(1, 2) end
assert_raise UndefinedFunctionError, fn -> Math.do_sum(1, 2) end
end

test "Concat.join/2 concatenates two strings with default separator" do
Expand Down

0 comments on commit a8c207f

Please sign in to comment.