Skip to content

Commit

Permalink
Update tests for v2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PhiMed committed Mar 13, 2024
1 parent 336bae8 commit 8788483
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ defmodule JasonOnlyAppTest do
"notifier" => %{
"name" => "Airbrake Client",
"url" => "https://github.com/CityBaseInc/airbrake_client",
"version" => "1.0.0"
"version" => "2.0.0"
},
"params" => nil,
"session" => nil
Expand Down Expand Up @@ -88,7 +88,7 @@ defmodule JasonOnlyAppTest do
"notifier" => %{
"name" => "Airbrake Client",
"url" => "https://github.com/CityBaseInc/airbrake_client",
"version" => "1.0.0"
"version" => "2.0.0"
},
"params" => %{"foo" => 55},
"session" => %{"foo" => 555}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ defmodule PoisonOnlyAppTest do
"notifier" => %{
"name" => "Airbrake Client",
"url" => "https://github.com/CityBaseInc/airbrake_client",
"version" => "1.0.0"
"version" => "2.0.0"
},
"params" => nil,
"session" => nil
Expand Down Expand Up @@ -89,7 +89,7 @@ defmodule PoisonOnlyAppTest do
"notifier" => %{
"name" => "Airbrake Client",
"url" => "https://github.com/CityBaseInc/airbrake_client",
"version" => "1.0.0"
"version" => "2.0.0"
},
"params" => %{"foo" => 55},
"session" => %{"foo" => 555}
Expand Down
12 changes: 6 additions & 6 deletions test/airbrake/payload_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ defmodule Airbrake.PayloadTest do
notifier: %{
name: "Airbrake Client",
url: "https://github.com/CityBaseInc/airbrake_client",
version: "1.0.0"
version: "2.0.0"
}
} = Payload.new(exception, stacktrace)
end
Expand Down Expand Up @@ -105,7 +105,7 @@ defmodule Airbrake.PayloadTest do
notifier: %{
name: "Airbrake Client",
url: "https://github.com/CityBaseInc/airbrake_client",
version: "1.0.0"
version: "2.0.0"
}
} = Payload.new(@exception, @stacktrace)
end
Expand Down Expand Up @@ -197,7 +197,7 @@ defmodule Airbrake.PayloadTest do
"notifier" => %{
"name" => "Airbrake Client",
"url" => "https://github.com/CityBaseInc/airbrake_client",
"version" => "1.0.0"
"version" => "2.0.0"
},
"params" => nil,
"session" => nil
Expand Down Expand Up @@ -241,7 +241,7 @@ defmodule Airbrake.PayloadTest do
"notifier" => %{
"name" => "Airbrake Client",
"url" => "https://github.com/CityBaseInc/airbrake_client",
"version" => "1.0.0"
"version" => "2.0.0"
},
"params" => %{"foo" => 55},
"session" => %{"foo" => 555}
Expand Down Expand Up @@ -280,7 +280,7 @@ defmodule Airbrake.PayloadTest do
"notifier" => %{
"name" => "Airbrake Client",
"url" => "https://github.com/CityBaseInc/airbrake_client",
"version" => "1.0.0"
"version" => "2.0.0"
},
"params" => nil,
"session" => nil
Expand Down Expand Up @@ -324,7 +324,7 @@ defmodule Airbrake.PayloadTest do
"notifier" => %{
"name" => "Airbrake Client",
"url" => "https://github.com/CityBaseInc/airbrake_client",
"version" => "1.0.0"
"version" => "2.0.0"
},
"params" => %{"foo" => 55},
"session" => %{"foo" => 555}
Expand Down

0 comments on commit 8788483

Please sign in to comment.