Skip to content

Commit

Permalink
Fix test descriptions
Browse files Browse the repository at this point in the history
Update test descriptions to match what they test, and match the other
test descriptions format.
  • Loading branch information
tombruijn committed Jun 22, 2021
1 parent b2c888d commit cef261e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/mix/helpers_test.exs
Expand Up @@ -12,7 +12,7 @@ defmodule Mix.Appsignal.HelperTest do
end

describe ".agent_platform" do
test "agent_platform returns libc build when the system detection doesn't work" do
test "returns libc build when the system detection doesn't work" do
assert Mix.Appsignal.Helper.agent_platform() == "linux"
end

Expand Down Expand Up @@ -68,7 +68,7 @@ defmodule Mix.Appsignal.HelperTest do
assert Mix.Appsignal.Helper.agent_platform() == "linux-musl"
end

test "agent_platform returns libc build when ldd doesn't return a version number", %{
test "returns libc build when ldd doesn't return a version number", %{
fake_system: fake_system
} do
FakeSystem.update(fake_system, :cmd, fn _, _, _ ->
Expand Down Expand Up @@ -99,7 +99,7 @@ defmodule Mix.Appsignal.HelperTest do
assert Mix.Appsignal.Helper.agent_platform() == "darwin"
end

test "returns the darwin build when on a freebsd system", %{
test "returns the FreeBSD build when on a FreeBSD system", %{
fake_os: fake_os,
fake_system: fake_system
} do
Expand Down

0 comments on commit cef261e

Please sign in to comment.