From 16cc5d9cf75fe962d6570688716d0005f4f11ee5 Mon Sep 17 00:00:00 2001 From: 3wc <3wc.git@doesthisthing.work> Date: Fri, 23 Oct 2020 05:04:35 +0200 Subject: [PATCH] Fix tests --- test.bats | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test.bats b/test.bats index 9240da37..1221ed1e 100644 --- a/test.bats +++ b/test.bats @@ -5,11 +5,11 @@ } @test "abra is executable" { - abra --help + ./abra --help } @test "abra server add/rm works" { - abra server add swarm.example.com user 222 + ./abra server add swarm.example.com user 222 docker context ls | grep swarm.example.com - abra server rm swarm.example.com + ./abra server rm swarm.example.com }