Skip to content
This repository was archived by the owner on Mar 23, 2021. It is now read-only.

Commit 87cacce

Browse files
committed
Align sanity tests names with what they now do
1 parent 6455f6e commit 87cacce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api_tests/dry/sanity.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ setTimeout(async function() {
3333
expect(body.entities).to.have.lengthOf(0);
3434
});
3535

36-
it("[Alice] Returns 400 Swap not supported for an unsupported combination of parameters", async () => {
36+
it("[Alice] Returns 400 invalid body for an unsupported combination of parameters", async () => {
3737
const res = await request(alice.cndHttpApiUrl())
3838
.post("/swaps/rfc003")
3939
.send({
@@ -66,7 +66,7 @@ setTimeout(async function() {
6666
expect(res.body.title).to.equal("Invalid body.");
6767
});
6868

69-
it("[Alice] Returns 400 bad request for malformed requests", async () => {
69+
it("[Alice] Returns 400 invalid body for malformed requests", async () => {
7070
const res = await request(alice.cndHttpApiUrl())
7171
.post("/swaps/rfc003")
7272
.send({

0 commit comments

Comments
 (0)