diff options
author | Steve Manuel <nilslice@gmail.com> | 2018-01-04 11:14:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-04 11:14:16 -0700 |
commit | 7194ae217d76436003ec03dab368c273ce3f2b5f (patch) | |
tree | 4cacef475a1515244b97fe91cfe09bdf5c19abc0 /.circleci/test-run.sh | |
parent | 188c1350b123d570bb55f348b19f583ef0e6f4b1 (diff) |
[deps] update go.uuid to latest and include in vendor (#217)
* Fix UUID issues (#216)
* fixing errors due to new updates to uuid packakge
* fix fomatting
* updating vendored version of uuid package
* adding test for more content types
Diffstat (limited to '.circleci/test-run.sh')
-rw-r--r-- | .circleci/test-run.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.circleci/test-run.sh b/.circleci/test-run.sh index dafef6f..5b8e150 100644 --- a/.circleci/test-run.sh +++ b/.circleci/test-run.sh @@ -22,4 +22,8 @@ curl -v --cookie-jar cookies \ #Test that content types were generated curl -b cookies -c cookies http://localhost:8080/admin/contents?type=Person \ - | grep Person
\ No newline at end of file + | grep Person + +curl -b cookies -c cookies http://localhost:8080/admin/contents?type=Message \ + | grep Message + |