Make ebert happy

master
Milton Mazzarri 2017-04-17 07:27:06 -05:00
parent d8bf88645e
commit 30d7ebe53b
No known key found for this signature in database
GPG Key ID: 9F4193F2B5A558FE
2 changed files with 2 additions and 2 deletions

View File

@ -8,6 +8,6 @@ defmodule Hunter.CardTest do
end
test "verify a card associated with a status", %{conn: conn} do
assert %Card{title: "milmazz/hunter"} = Card.card_by_status(conn, 118635)
assert %Card{title: "milmazz/hunter"} = Card.card_by_status(conn, 118_635)
end
end

View File

@ -14,7 +14,7 @@ defmodule Hunter.NotificationTest do
end
test "fetch a single notification", %{conn: conn} do
notification = Notification.notification(conn, 17476)
notification = Notification.notification(conn, 17_476)
assert "paperswelove" == notification.account["username"]
assert "follow" == notification.type
end