summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test_backend.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test_backend.lua b/test_backend.lua
index c0b45a9..30e7212 100644
--- a/test_backend.lua
+++ b/test_backend.lua
@@ -109,12 +109,12 @@ for _,obj in ipairs(object_ids) do
print()
end
+print("Creating repository from git repository:", git_path)
local status, rep = pcall(git2.Repository.open_no_backend,
git_path, git_path .. 'objects', git_path .. 'index', git_path .. '../')
if not status then
- print("Creating repository from git repository:", git_path)
- rep = git2.Repository.open(git_path)
+ rep = assert(git2.Repository.open(git_path))
else
print("Created repository with no backends from git repository:", git_path)
end