|
@@ -3386,7 +3386,7 @@ describe('isAPIPayloadSimilar', function () {
|
|
|
expect(results).toBe(false);
|
|
|
});
|
|
|
|
|
|
- it('it is similar if column order changes', function () {
|
|
|
+ it('is similar if column order changes', function () {
|
|
|
const thisEventView = new EventView(state);
|
|
|
const location = {};
|
|
|
const thisAPIPayload = thisEventView.getEventsAPIPayload(location);
|
|
@@ -3401,7 +3401,7 @@ describe('isAPIPayloadSimilar', function () {
|
|
|
expect(results).toBe(true);
|
|
|
});
|
|
|
|
|
|
- it('it is similar if equation order relatively same', function () {
|
|
|
+ it('is similar if equation order relatively same', function () {
|
|
|
const equationField = {field: 'equation|failure_count() / count()'};
|
|
|
const otherEquationField = {field: 'equation|failure_count() / 2'};
|
|
|
state.fields = [
|
|
@@ -3429,7 +3429,7 @@ describe('isAPIPayloadSimilar', function () {
|
|
|
expect(results).toBe(true);
|
|
|
});
|
|
|
|
|
|
- it('it is not similar if equation order changes', function () {
|
|
|
+ it('is not similar if equation order changes', function () {
|
|
|
const equationField = {field: 'equation|failure_count() / count()'};
|
|
|
const otherEquationField = {field: 'equation|failure_count() / 2'};
|
|
|
state.fields = [
|