Skip to content

Commit

Permalink
chore: remove unneeded char list sigils
Browse files Browse the repository at this point in the history
  • Loading branch information
jackrosa183 authored and avogel3 committed Sep 20, 2024
1 parent e9c0032 commit 7d90da8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/controllers/stats_controller_test.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Tilex.StatsControllerTest do
use TilexWeb.ConnCase, async: true

test ~c"developer/2 redirects to stats index when unauthenticated", %{conn: conn} do
test "developer/2 redirects to stats index when unauthenticated", %{conn: conn} do
response = get(conn, Routes.stats_path(conn, :developer))
assert html_response(response, 302)
end
Expand Down
2 changes: 1 addition & 1 deletion test/features/developer_signs_out_test.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Features.DeveloperSignsOutTest do
use Tilex.IntegrationCase, async: true

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

session
Expand Down
2 changes: 1 addition & 1 deletion test/support/pages/create_post_page.ex
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ defmodule Tilex.Integration.Pages.CreatePostPage do

def click_cancel(session) do
session
|> click(Query.link(~c"cancel"))
|> click(Query.link("cancel"))
end

def expect_form_has_error(session, error_text) do
Expand Down

0 comments on commit 7d90da8

Please sign in to comment.