Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: packages/dart_style/test/regression/0400/0410.stmt

Issue 1521693002: Roll Observatory deps (charted -> ^0.3.0) (Closed) Base URL: https://chromium.googlesource.com/external/github.com/dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }));
OLDNEW
« no previous file with comments | « packages/dart_style/test/regression/0400/0407.unit ('k') | packages/dart_style/test/regression/0400/0413.unit » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698