Skip to content
Snippets Groups Projects
Commit 47320898 authored by Rafael Dias's avatar Rafael Dias
Browse files

Issue #81:Fix orthography from tests


Signed-off-by: default avatarRafael <rpd17@inf.ufpr.br>
parent 14f01727
No related branches found
No related tags found
No related merge requests found
Pipeline #16451 passed
......@@ -76,7 +76,7 @@ describe("API collect controller", () => {
.expect((res: any) => {
const message = "Query execution failed: " +
"Could not construct query with the parameters given.";
"Could not construct query with the given parameters.";
const error = "The source named 'thisisjustatest' was not found";
expect(res.body).to.be.an("object");
expect(res.body).to.have.property("message");
......@@ -93,7 +93,7 @@ describe("API collect controller", () => {
.expect(500)
.expect((res: any) => {
const message = "Query execution failed: " +
"Could not construct query with the parameters given.";
"Could not construct query with the given parameters.";
const error = "The 'fields:0' wasn't informed on json";
expect(res.body).to.be.an("object");
expect(res.body).to.have.property("message");
......@@ -124,7 +124,7 @@ describe("API collect controller", () => {
.expect(500)
.expect((res: any) => {
const message = "Query execution failed: " +
"Could not construct query with the parameters given.";
"Could not construct query with the given parameters.";
const error = "The value '1' from 'fields:0' isn't listed on enumtype:0";
expect(res.body).to.be.an("object");
expect(res.body).to.have.property("message");
......@@ -157,7 +157,7 @@ describe("API collect controller", () => {
.expect((res: any) => {
const message = "Query execution failed: " +
"Could not construct query with the parameters given.";
"Could not construct query with the given parameters.";
const error = "The value 'nope' from 'fields:0' isn't a type integer";
expect(res.body).to.be.an("object");
expect(res.body).to.have.property("message");
......@@ -176,7 +176,7 @@ describe("API collect controller", () => {
.expect((res: any) => {
const message = "Query execution failed: " +
"Could not construct query with the parameters given.";
"Could not construct query with the given parameters.";
const error = "The value 'notafloat' from 'fields:1' isn't a type float";
expect(res.body).to.be.an("object");
expect(res.body).to.have.property("message");
......@@ -195,7 +195,7 @@ describe("API collect controller", () => {
.expect((res: any) => {
const message = "Query execution failed: " +
"Could not construct query with the parameters given.";
"Could not construct query with the given parameters.";
const error = "The value '1' from 'fields:2' isn't a type string";
expect(res.body).to.be.an("object");
expect(res.body).to.have.property("message");
......@@ -214,7 +214,7 @@ describe("API collect controller", () => {
.expect((res: any) => {
const message = "Query execution failed: " +
"Could not construct query with the parameters given.";
"Could not construct query with the given parameters.";
const error = "The value 'notaboolean' from 'fields:3' isn't a type boolean";
expect(res.body).to.be.an("object");
expect(res.body).to.have.property("message");
......@@ -233,7 +233,7 @@ describe("API collect controller", () => {
.expect((res: any) => {
const message = "Query execution failed: " +
"Could not construct query with the parameters given.";
"Could not construct query with the given parameters.";
const error = "The value '1999-25-25' from 'fields:4' isn't a type date";
expect(res.body).to.be.an("object");
expect(res.body).to.have.property("message");
......
......@@ -162,7 +162,7 @@ export class CollectCtrl {
catch (e) {
res.status(500).json({
message: "Query execution failed: " +
"Could not construct query with the parameters given.",
"Could not construct query with the given parameters.",
error: e.message
});
return;
......
......@@ -52,7 +52,7 @@ describe("API data controller", () => {
.expect(500)
.expect((res: any) => {
const message = "Query execution failed: " +
"Could not construct query with the paramters given.";
"Could not construct query with the given parameters.";
const error = "The metric named met:-1 was not found";
expect(res.body).to.be.an("object");
expect(res.body).to.have.property("message");
......@@ -70,7 +70,7 @@ describe("API data controller", () => {
.expect(500)
.expect((res: any) => {
const message = "Query execution failed: " +
"Could not construct query with the paramters given.";
"Could not construct query with the given parameters.";
const error = "The dimension named dim:-1 was not found";
expect(res.body).to.be.an("object");
expect(res.body).to.have.property("message");
......@@ -90,7 +90,7 @@ describe("API data controller", () => {
.expect(500)
.expect((res: any) => {
const message = "Query execution failed: " +
"Could not construct query with the paramters given.";
"Could not construct query with the given parameters.";
const error = "The item 'dim:0'" +
" is not present in neither metrics nor dimensions list";
expect(res.body).to.be.an("object");
......
......@@ -85,7 +85,7 @@ export class DataCtrl {
catch (e) {
res.status(500).json({
message: "Query execution failed: " +
"Could not construct query with the paramters given.",
"Could not construct query with the given parameters.",
error: e.message
});
return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment