Skip to content

Commit

Permalink
fix: cleanup test compile warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
hpopp committed Aug 29, 2024
1 parent a4f6f51 commit 08d0b54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/pigeon/fcm/config.ex
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ defmodule Pigeon.FCM.Config do
port: 443,
project_id: "example-project",
service_account_json: %{"dummy" => "contents"},
uri: 'fcm.googleapis.com'
uri: ~c"fcm.googleapis.com"
}
"""
def new(opts) when is_list(opts) do
Expand Down
4 changes: 2 additions & 2 deletions lib/pigeon/legacy_fcm/config.ex
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ defmodule Pigeon.LegacyFCM.Config do
iex> Pigeon.LegacyFCM.Config.new(
...> key: "fcm_key",
...> uri: 'test.server.example.com',
...> uri: ~c"test.server.example.com",
...> port: 5228
...> )
%Pigeon.LegacyFCM.Config{
key: "fcm_key",
port: 5228,
uri: 'test.server.example.com'
uri: ~c"test.server.example.com"
}
"""
def new(opts) when is_list(opts) do
Expand Down

0 comments on commit 08d0b54

Please sign in to comment.