Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
axelson committed Sep 25, 2023
1 parent 60edede commit 0705359
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/scenic_new_example_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ defmodule Mix.Tasks.Scenic.NewExampleTest do
assert_file("#{@app_name}/mix.exs", fn file ->
assert file =~ "mod: {#{@module_name}, []}"

assert file =~ "{:scenic, \"~> 0.11.0-beta.0\"}"
assert file =~ "{:scenic_driver_local, \"~> 0.11.0-beta.0\"}"
assert file =~ "{:scenic, \"~> 0.11.0\"}"
assert file =~ "{:scenic_driver_local, \"~> 0.11.0\"}"
end)
end) =~ "Your Scenic project was created successfully."
end)
Expand Down
4 changes: 2 additions & 2 deletions test/scenic_new_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ defmodule Mix.Tasks.Scenic.NewTest do
assert_file("#{@app_name}/mix.exs", fn file ->
assert file =~ "mod: {#{@module_name}, []}"

assert file =~ "{:scenic, \"~> 0.11.0-beta.0\"}"
assert file =~ "{:scenic_driver_local, \"~> 0.11.0-beta.0\"}"
assert file =~ "{:scenic, \"~> 0.11.0\"}"
assert file =~ "{:scenic_driver_local, \"~> 0.11.0\"}"
end)
end) =~ "Your Scenic project was created successfully."
end)
Expand Down

0 comments on commit 0705359

Please sign in to comment.