Skip to content

Commit b923681

Browse files
author
José Valim
committed
Merge pull request #2300 from lexmag/mix-run-warn-fix
Fix match in `Mix.Tasks.Run` test
2 parents 9b431a8 + 6f0c026 commit b923681

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mix/test/mix/tasks/run_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ defmodule Mix.Tasks.RunTest do
4747

4848
unload_file.()
4949
Mix.Tasks.Run.run ["-e", "send self, {:system_argv, System.argv}", file, "foo", "-x", "bar"]
50-
assert_received {:system_argv, [file, "foo", "-x", "bar"]}
50+
assert_received {:system_argv, [^file, "foo", "-x", "bar"]}
5151

5252
unload_file.()
5353
Mix.Tasks.Run.run [

0 commit comments

Comments
 (0)