Skip to content

Commit 7d90da8

Browse files
jackrosa183avogel3
authored andcommitted
chore: remove unneeded char list sigils
1 parent e9c0032 commit 7d90da8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/controllers/stats_controller_test.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Tilex.StatsControllerTest do
22
use TilexWeb.ConnCase, async: true
33

4-
test ~c"developer/2 redirects to stats index when unauthenticated", %{conn: conn} do
4+
test "developer/2 redirects to stats index when unauthenticated", %{conn: conn} do
55
response = get(conn, Routes.stats_path(conn, :developer))
66
assert html_response(response, 302)
77
end

test/features/developer_signs_out_test.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Features.DeveloperSignsOutTest do
22
use Tilex.IntegrationCase, async: true
33

4-
test ~c"signs out and sees a flash message", %{:session => session} do
4+
test "signs out and sees a flash message", %{:session => session} do
55
developer = Factory.insert!(:developer)
66

77
session

test/support/pages/create_post_page.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ defmodule Tilex.Integration.Pages.CreatePostPage do
3232

3333
def click_cancel(session) do
3434
session
35-
|> click(Query.link(~c"cancel"))
35+
|> click(Query.link("cancel"))
3636
end
3737

3838
def expect_form_has_error(session, error_text) do

0 commit comments

Comments
 (0)