Skip to content

Commit

Permalink
tools/packaging_test: fix malformed test command
Browse files Browse the repository at this point in the history
  • Loading branch information
rfratto committed Mar 25, 2024
1 parent 3ab9c79 commit 4ba2723
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func (env *AlloyEnvironment) TestInstall(t *testing.T) {
res := env.Install()
require.Equal(t, 0, res.ExitCode, "installing failed")

res = env.ExecScript(`[ -f /usr/bin/alloy]`)
res = env.ExecScript(`[ -f /usr/bin/alloy ]`)
require.Equal(t, 0, res.ExitCode, "expected Alloy to be installed")
res = env.ExecScript(`[ -f /etc/alloy.river ]`)
require.Equal(t, 0, res.ExitCode, "expected Alloy configuration file to exist")
Expand Down

0 comments on commit 4ba2723

Please sign in to comment.