@@ -37,7 +37,7 @@ describe("autoquality", () => {
3737
3838 it ( "should throw an error if autoquality.target is less than 0" , ( ) => {
3939 expect ( ( ) => build ( { autoquality : { target : - 1 } } ) ) . toThrow (
40- "autoquality.target value can't be less then 0"
40+ "autoquality.target value can't be less than 0"
4141 ) ;
4242 } ) ;
4343
@@ -50,7 +50,7 @@ describe("autoquality", () => {
5050
5151 it ( "should throw an error if autoquality.min_quality is less than 0" , ( ) => {
5252 expect ( ( ) => build ( { autoquality : { min_quality : - 1 } } ) ) . toThrow (
53- "autoquality.min_quality value can't be less then 0"
53+ "autoquality.min_quality value can't be less than 0"
5454 ) ;
5555 } ) ;
5656
@@ -69,7 +69,7 @@ describe("autoquality", () => {
6969
7070 it ( "should throw an error if autoquality.max_quality is less than 0" , ( ) => {
7171 expect ( ( ) => build ( { autoquality : { max_quality : - 1 } } ) ) . toThrow (
72- "autoquality.max_quality value can't be less then 0"
72+ "autoquality.max_quality value can't be less than 0"
7373 ) ;
7474 } ) ;
7575
@@ -89,7 +89,7 @@ describe("autoquality", () => {
8989 it ( "should throw an error if autoquality.allowed_error is less than 0" , ( ) => {
9090 expect ( ( ) =>
9191 build ( { autoquality : { method : "ml" , allowed_error : - 1 } } )
92- ) . toThrow ( "autoquality.allowed_error value can't be less then 0" ) ;
92+ ) . toThrow ( "autoquality.allowed_error value can't be less than 0" ) ;
9393 } ) ;
9494
9595 it ( "should throw an error if autoquality.allowed_error is more than 1" , ( ) => {
0 commit comments