diff options
author | marcin mikołajczak <git@mkljczk.pl> | 2023-12-28 00:15:32 +0100 |
---|---|---|
committer | marcin mikołajczak <git@mkljczk.pl> | 2023-12-28 00:17:04 +0100 |
commit | 017e35fbf128d47c033275a70b76b72f24d7c754 (patch) | |
tree | 6352f066d25e416d850177a50bf30030d0ba4056 /test/mix | |
parent | f53197c82a90533c9152d7d8ed57c2604a2d6685 (diff) | |
download | pleroma-017e35fbf128d47c033275a70b76b72f24d7c754.tar.gz pleroma-017e35fbf128d47c033275a70b76b72f24d7c754.zip |
Fix some more typos
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
Diffstat (limited to 'test/mix')
-rw-r--r-- | test/mix/pleroma_test.exs | 2 | ||||
-rw-r--r-- | test/mix/tasks/pleroma/ecto/rollback_test.exs | 2 | ||||
-rw-r--r-- | test/mix/tasks/pleroma/robots_txt_test.exs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/mix/pleroma_test.exs b/test/mix/pleroma_test.exs index c981ee9b9..e362223b2 100644 --- a/test/mix/pleroma_test.exs +++ b/test/mix/pleroma_test.exs @@ -39,7 +39,7 @@ defmodule Mix.PleromaTest do describe "get_option/3" do test "get from options" do - assert get_option([domain: "some-domain.com"], :domain, "Promt") == "some-domain.com" + assert get_option([domain: "some-domain.com"], :domain, "Prompt") == "some-domain.com" end test "get from prompt" do diff --git a/test/mix/tasks/pleroma/ecto/rollback_test.exs b/test/mix/tasks/pleroma/ecto/rollback_test.exs index db8641e7f..4036b2da6 100644 --- a/test/mix/tasks/pleroma/ecto/rollback_test.exs +++ b/test/mix/tasks/pleroma/ecto/rollback_test.exs @@ -13,7 +13,7 @@ defmodule Mix.Tasks.Pleroma.Ecto.RollbackTest do assert capture_log(fn -> Mix.Tasks.Pleroma.Ecto.Rollback.run(["--env", "test"]) - end) =~ "[info] Rollback succesfully" + end) =~ "[info] Rollback successfully" Logger.configure(level: level) end diff --git a/test/mix/tasks/pleroma/robots_txt_test.exs b/test/mix/tasks/pleroma/robots_txt_test.exs index 4426fe526..dd6ca9fc8 100644 --- a/test/mix/tasks/pleroma/robots_txt_test.exs +++ b/test/mix/tasks/pleroma/robots_txt_test.exs @@ -26,7 +26,7 @@ defmodule Mix.Tasks.Pleroma.RobotsTxtTest do assert file == "User-Agent: *\nDisallow: /\n" end - test "to existance folder" do + test "to existing folder" do path = "test/fixtures/" file_path = path <> "robots.txt" clear_config([:instance, :static_dir], path) |