File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ test("should return true when absolute numerator is less than absolute denominat
1717test ( "should return false when numerator equals denominator" , ( ) => {
1818 expect ( isProperFraction ( 3 , 3 ) ) . toEqual ( false ) ;
1919} ) ;
20- test ( "should return true when numerator < | denominator| and denominator is negative" , ( ) => {
20+ test ( "should return true when numerator < denominator and denominator is negative" , ( ) => {
2121 expect ( isProperFraction ( 4 , - 7 ) ) . toEqual ( true ) ;
2222} ) ;
23- test ( "should return true when numerator and denominator are both negative and | numerator| < | denominator| " , ( ) => {
23+ test ( "should return true when numerator and denominator are both negative and numerator < denominator" , ( ) => {
2424 expect ( isProperFraction ( - 4 , - 7 ) ) . toEqual ( true ) ;
2525} ) ;
2626test ( "should return true when numerator is zero and denominator is negative" , ( ) => {
You can’t perform that action at this time.
0 commit comments