@@ -11,7 +11,7 @@ function testMain() {
1111 const browser : { browser : string , version : string } = Backendless . browser ;
1212
1313 Backendless . initApp ( 'APPLICATION_ID' , 'JS_SECRET_KEY' ) ;
14- Backendless . initApp ( { appId : 'APPLICATION_ID' , apiKey : 'JS_SECRET_KEY' } ) ;
14+ Backendless . initApp ( { appId : 'APPLICATION_ID' , apiKey : 'JS_SECRET_KEY' } ) ;
1515}
1616
1717function testLocalCache ( ) {
@@ -75,13 +75,13 @@ function testDataQueryBuilderClass() {
7575 str = dataQuery . getWhereClause ( ) ;
7676
7777 dataQuery = dataQuery . setProperties ( 'abc' ) ;
78- dataQuery = dataQuery . setProperties ( [ 'abc' , 'abc' , 'abc' ] ) ;
78+ dataQuery = dataQuery . setProperties ( [ 'abc' , 'abc' , 'abc' ] ) ;
7979 dataQuery = dataQuery . addProperty ( str ) ;
8080 dataQuery = dataQuery . addProperties ( str , str , str , str ) ;
81- dataQuery = dataQuery . addProperties ( [ 'abc' , 'abc' , 'abc' ] , [ 'abc' , 'abc' , 'abc' ] , [ 'abc' , 'abc' , 'abc' ] ) ;
82- dataQuery = dataQuery . addProperties ( [ 'abc' , 'abc' , 'abc' ] , str , str ) ;
81+ dataQuery = dataQuery . addProperties ( [ 'abc' , 'abc' , 'abc' ] , [ 'abc' , 'abc' , 'abc' ] , [ 'abc' , 'abc' , 'abc' ] ) ;
82+ dataQuery = dataQuery . addProperties ( [ 'abc' , 'abc' , 'abc' ] , str , str ) ;
8383 dataQuery = dataQuery . addProperties ( str ) ;
84- dataQuery = dataQuery . addProperties ( [ 'abc' , 'abc' , 'abc' ] ) ;
84+ dataQuery = dataQuery . addProperties ( [ 'abc' , 'abc' , 'abc' ] ) ;
8585
8686 strs = dataQuery . getProperties ( ) ;
8787
@@ -790,7 +790,7 @@ function testMessaging() {
790790 promiseObject = Backendless . Messaging . getPushTemplates ( 'ios' ) ;
791791
792792 promiseObject = Backendless . Messaging . pushWithTemplate ( 'templateName' ) ;
793-
793+ promiseObject = Backendless . Messaging . pushWithTemplate ( 'templateName' , { foo : 'bar' } ) ;
794794}
795795
796796function testFilesService ( ) {
0 commit comments