@@ -6,7 +6,6 @@ import * as builder from "../src/runtime/builder";
6
6
import { InsertAction , RemoveAction } from "../src/runtime/actions" ;
7
7
import { BrowserSessionDatabase } from "../src/runtime/databases/browserSession" ;
8
8
9
-
10
9
export function dedent ( str ) {
11
10
let lines = [ ] ;
12
11
let indent ;
@@ -127,8 +126,8 @@ export function resolveActualExpected(assert, actuals, expecteds, entities) {
127
126
}
128
127
129
128
export function verify ( assert , adds , removes , data ) {
130
- assert . equal ( data . insert . length , adds . length , "Wrong number of inserts" ) ;
131
- assert . equal ( data . remove . length , removes . length , "Wrong number of removes" ) ;
129
+ assert . equal ( data . insert . length , adds . length , "Correct number of inserts" ) ;
130
+ assert . equal ( data . remove . length , removes . length , "Correct number of removes" ) ;
132
131
133
132
// get all the entities
134
133
let entities = collectEntities ( adds ) ;
@@ -165,7 +164,7 @@ export function evaluate(assert, expected, code, session = new Database()) {
165
164
return next ;
166
165
}
167
166
168
- export function testSingleExpressionByList ( list :any [ ] ) {
167
+ export function testSingleExpressionByList ( list :any [ ] ) {
169
168
list . forEach ( ( list_item , index ) => {
170
169
test ( `Is ${ list_item . Expression } returning ${ list_item . Value } ?` , ( assert ) => {
171
170
let expected = {
0 commit comments