Skip to content

Commit 1cddf5a

Browse files
author
José Valim
committed
Update CHANGELOG
1 parent 3fff57d commit 1cddf5a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ and is using Erlang 17.1, remember to update to at least Erlang 17.3.
9393
* [ExUnit] Provide built-in log capturing functionality
9494
* [ExUnit] Allow `assert_receive_timeout` and `refute_receive_timeout` to be configured in the ExUnit application
9595
* [ExUnit] Allow tests to be skipped with `@tag :skip` or `@tag skip: "reason"`
96-
* [ExUnit] Add tests without implementation (missing the do block) which automatically fail
96+
* [ExUnit] Add tests without implementation (missing the do block) which automatically fail. Such tests are also automatically tagged as `:not_implemented`, allowing them to be skipped
9797
* [ExUnit] Increase by default stacktrace depth to 20 (this value is also configurable)
9898

9999
#### IEx

lib/mix/test/mix/cli_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ defmodule Mix.CLITest do
6363
test "tasks with slashes in them raise a NoTaskError right away" do
6464
in_fixture "no_mixfile", fn ->
6565
contents = mix ~w[my/task]
66-
assert contents =~ "** (Mix) The task my/task could not be found"
66+
assert contents =~ "** (Mix) The task \"my/task\" could not be found"
6767
end
6868
end
6969

0 commit comments

Comments
 (0)