OLD | NEW |
(Empty) | |
| 1 >>> |
| 2 test( |
| 3 'some test that has a very long description so the params need two lines', |
| 4 async(() { |
| 5 expect( |
| 6 request.enabledApExperiments.contains( |
| 7 ApExperimentName.SOME_VERY_LONG_ENUMS_THAT_LEADS_TO_MANY_PROBLEMS), |
| 8 isFalse); |
| 9 })); |
| 10 <<< |
| 11 test('some test that has a very long description so the params need two lines', |
| 12 async(() { |
| 13 expect( |
| 14 request.enabledApExperiments.contains( |
| 15 ApExperimentName.SOME_VERY_LONG_ENUMS_THAT_LEADS_TO_MANY_PROBLEMS), |
| 16 isFalse); |
| 17 })); |
| 18 >>> (indent 2) |
| 19 test( |
| 20 'some test that has a very long description so the params need two lines', |
| 21 async(() { |
| 22 expect( |
| 23 request.enabledApExperiments.contains( |
| 24 ApExperimentName.SOME_VERY_LONG_ENUMS_THAT_LEADS_TO_MANY_PROBLEMS), |
| 25 isFalse); |
| 26 })); |
| 27 <<< |
| 28 test( |
| 29 'some test that has a very long description so the params need two lines', |
| 30 async(() { |
| 31 expect( |
| 32 request.enabledApExperiments.contains( |
| 33 ApExperimentName.SOME_VERY_LONG_ENUMS_THAT_LEADS_TO_MANY_PROBLEMS), |
| 34 isFalse); |
| 35 })); |
| 36 >>> (indent 4) |
| 37 test( |
| 38 'some test that has a very long description so the params need two lines', |
| 39 async(() { |
| 40 expect( |
| 41 request.enabledApExperiments.contains( |
| 42 ApExperimentName.SOME_VERY_LONG_ENUMS_THAT_LEADS_TO_MANY_PROBLEMS), |
| 43 isFalse); |
| 44 })); |
| 45 <<< |
| 46 test( |
| 47 'some test that has a very long description so the params need two lines
', |
| 48 async(() { |
| 49 expect( |
| 50 request.enabledApExperiments.contains(ApExperimentName |
| 51 .SOME_VERY_LONG_ENUMS_THAT_LEADS_TO_MANY_PROBLEMS), |
| 52 isFalse); |
| 53 })); |
OLD | NEW |