Fix bats cloning
diff --git a/Jenkinsfile b/Jenkinsfile
index f1f5202..54999b3 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -6,6 +6,6 @@
   docker.build('jenkins')
 
   stage 'Test'
-  sh "git checkout https://github.com/sstephenson/bats.git"
-  sh "bats/bin/bats tests/tests.bats"
+  sh "git clone https://github.com/sstephenson/bats.git"
+  sh "bats/bin/bats tests"
 }