summaryrefslogtreecommitdiffstats
path: root/imag-store
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-09-05 17:04:57 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-09-05 17:05:18 +0200
commitd8c61d25c4a8369cf9ec5eb00c7f25b2bbb80858 (patch)
tree206b93a529cffd0c5201056268eaa6f23ab043c4 /imag-store
parent737aab80dc029315d412ff781f20e9afd8db55ae (diff)
Fix absolute storeid specification in test
Diffstat (limited to 'imag-store')
-rw-r--r--imag-store/tests/002-retrieve_test.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/imag-store/tests/002-retrieve_test.sh b/imag-store/tests/002-retrieve_test.sh
index 1e6e7203..63ed6e97 100644
--- a/imag-store/tests/002-retrieve_test.sh
+++ b/imag-store/tests/002-retrieve_test.sh
@@ -23,7 +23,7 @@ test_retrieve_nothing() {
imag-store create -p ${id} || { err "create failed"; return 1; }
out "Going to test the retrieve functionality now"
- local zero_out="$(retrieve --id /${id})"
+ local zero_out="$(retrieve --id ${id})"
out "Retrieving for zero_out finished"
if [[ ! -z "$zero_out" ]]; then
@@ -39,7 +39,7 @@ test_retrieve_content() {
out "Going to test the retrieve functionality now"
- local content_out="$(retrieve --id /${id} --content)"
+ local content_out="$(retrieve --id ${id} --content)"
out "Retrieving for content_out finished"
if [[ ! -z "$content_out" ]]; then