Skip to content
Snippets Groups Projects
Commit 27a34374 authored by Colton Leekley-Winslow's avatar Colton Leekley-Winslow
Browse files

Fix abao hook for POST /users -> 400

parent 6fb7c4b2
No related branches found
No related tags found
No related merge requests found
......@@ -104,8 +104,8 @@ hooks.before("GET /download -> 404", function(test, done) {
done();
});
hooks.before("POST /users -> 422", function(test, done) {
test.request.body = {totally:"not valid"};
hooks.before("POST /users -> 400", function(test, done) {
test.request.body = {api_key:{key:"test"}};
done();
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment