@@ -209,7 +209,7 @@ module.exports = () => {
209209
210210 const { data } = response . body ;
211211 expect ( data ) . to . be . an ( 'array' ) ;
212- expect ( data ) . to . have . lengthOf ( 8 ) ;
212+ expect ( data ) . to . have . lengthOf ( 9 ) ;
213213 } ) ;
214214
215215 it ( 'should successfully filter on tags' , async ( ) => {
@@ -267,7 +267,7 @@ module.exports = () => {
267267 expect ( response . status ) . to . equal ( 200 ) ;
268268
269269 const { data } = response . body ;
270- expect ( data ) . to . lengthOf ( 10 ) ;
270+ expect ( data ) . to . lengthOf ( 11 ) ;
271271 expect ( data . every ( ( { definition } ) => definition === RunDefinition . PHYSICS ) ) . to . be . true ;
272272 } ) ;
273273
@@ -357,7 +357,7 @@ module.exports = () => {
357357 const { data } = response . body ;
358358 expect ( data ) . to . be . an ( 'array' ) ;
359359
360- expect ( data ) . to . have . lengthOf ( 14 ) ;
360+ expect ( data ) . to . have . lengthOf ( 15 ) ;
361361 } ) ;
362362
363363 it ( 'should successfully filter on updatedAt' , async ( ) => {
@@ -372,7 +372,7 @@ module.exports = () => {
372372 const { data } = response . body ;
373373
374374 expect ( data ) . to . be . an ( 'array' ) ;
375- expect ( data ) . to . have . lengthOf ( 10 ) ;
375+ expect ( data ) . to . have . lengthOf ( 11 ) ;
376376 } ) ;
377377
378378 const inelasticInteractionRateFilteringTestsParameters = {
@@ -496,7 +496,7 @@ module.exports = () => {
496496 expect ( response . status ) . to . equal ( 200 ) ;
497497
498498 const { data } = response . body ;
499- expect ( data . length ) . to . equal ( 7 ) ;
499+ expect ( data . length ) . to . equal ( 8 ) ;
500500 } ) ;
501501
502502 it ( 'should return 400 if "runQuality" is invalid' , async ( ) => {
@@ -527,7 +527,7 @@ module.exports = () => {
527527
528528 const { data } = response . body ;
529529 expect ( data ) . to . be . an ( 'array' ) ;
530- expect ( data ) . to . have . lengthOf ( 48 ) ;
530+ expect ( data ) . to . have . lengthOf ( 49 ) ;
531531 } ) ;
532532
533533 it ( 'should successfully filter on lhcPeriod' , async ( ) => {
@@ -933,7 +933,7 @@ module.exports = () => {
933933 expect ( res . body . data . odcTopologyFullName ) . to . equal ( 'synchronous-workflow' ) ;
934934 expect ( res . body . data ) . to . be . an ( 'object' ) ;
935935 expect ( res . body . data . runType . id ) . to . be . a ( 'number' ) ;
936- expect ( res . body . data . id ) . to . equal ( 109 ) ;
936+ expect ( res . body . data . id ) . to . equal ( 110 ) ;
937937
938938 done ( ) ;
939939 } ) ;
0 commit comments