Skip to content

Commit

Permalink
strict jq errors on Travis... missing jq filters added
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszbudnik committed Sep 1, 2021
1 parent d49d991 commit 820084d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/http-integration-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ if [ "$version_create_name" != "$VERSION_NAME" ]; then
exit 1
fi
echo "New version successfully created"
echo $version_create | jq
echo $version_create | jq '.'

# 4. Fetch migrator versions - will now contain version created above

Expand Down Expand Up @@ -155,7 +155,7 @@ if [ "$tenant_create_version_name" != "$VERSION_NAME" ]; then
exit 1
fi
echo "New tenant successfully created"
echo $tenant_create | jq
echo $tenant_create | jq '.'

# 6. Fetch tenants - will now contain tenant create above

Expand All @@ -176,4 +176,4 @@ echo "--------------------------------------------------------------------------

echo "All good!"

cleanup
cleanup

0 comments on commit 820084d

Please sign in to comment.