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

Unified Diff: pkg/analyzer/test/src/task/html_test.dart

Issue 2975253002: Format analyzer, analysis_server, analyzer_plugin, front_end and kernel with the latest dartfmt. (Closed)
Patch Set: Created 3 years, 5 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer/test/src/task/dart_test.dart ('k') | pkg/analyzer/test/src/task/options_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/src/task/html_test.dart
diff --git a/pkg/analyzer/test/src/task/html_test.dart b/pkg/analyzer/test/src/task/html_test.dart
index c2e652b2523558a0cb537e296a802b6d3e919665..30952998690f357e3f97aac39b031d1c157c2ab9 100644
--- a/pkg/analyzer/test/src/task/html_test.dart
+++ b/pkg/analyzer/test/src/task/html_test.dart
@@ -67,9 +67,7 @@ class DartScriptsTaskTest extends AbstractContextTest {
String content = r'''
void buttonPressed() {}
''';
- AnalysisTarget target = newSource(
- '/test.html',
- '''
+ AnalysisTarget target = newSource('/test.html', '''
<!DOCTYPE html>
<html>
<head>
@@ -88,9 +86,7 @@ class DartScriptsTaskTest extends AbstractContextTest {
}
void test_perform_empty_source_reference() {
- AnalysisTarget target = newSource(
- '/test.html',
- r'''
+ AnalysisTarget target = newSource('/test.html', r'''
<!DOCTYPE html>
<html>
<head>
@@ -105,9 +101,7 @@ class DartScriptsTaskTest extends AbstractContextTest {
}
void test_perform_invalid_source_reference() {
- AnalysisTarget target = newSource(
- '/test.html',
- r'''
+ AnalysisTarget target = newSource('/test.html', r'''
<!DOCTYPE html>
<html>
<head>
@@ -122,9 +116,7 @@ class DartScriptsTaskTest extends AbstractContextTest {
}
void test_perform_non_existing_source_reference() {
- AnalysisTarget target = newSource(
- '/test.html',
- r'''
+ AnalysisTarget target = newSource('/test.html', r'''
<!DOCTYPE html>
<html>
<head>
@@ -139,9 +131,7 @@ class DartScriptsTaskTest extends AbstractContextTest {
}
test_perform_none() {
- AnalysisTarget target = newSource(
- '/test.html',
- r'''
+ AnalysisTarget target = newSource('/test.html', r'''
<!DOCTYPE html>
<html>
<head>
@@ -158,9 +148,7 @@ class DartScriptsTaskTest extends AbstractContextTest {
}
void test_perform_referenced_source() {
- AnalysisTarget target = newSource(
- '/test.html',
- r'''
+ AnalysisTarget target = newSource('/test.html', r'''
<!DOCTYPE html>
<html>
<head>
@@ -178,9 +166,7 @@ class DartScriptsTaskTest extends AbstractContextTest {
@reflectiveTest
class HtmlErrorsTaskTest extends AbstractContextTest {
fail_perform_htmlErrors() {
- AnalysisTarget target = newSource(
- '/test.html',
- r'''
+ AnalysisTarget target = newSource('/test.html', r'''
<html>
<head>
<title>test page</not-title>
@@ -222,9 +208,7 @@ class HtmlErrorsTaskTest extends AbstractContextTest {
}
test_perform_dartErrors() {
- AnalysisTarget target = newSource(
- '/test.html',
- r'''
+ AnalysisTarget target = newSource('/test.html', r'''
<!DOCTYPE html>
<html>
<head>
@@ -241,9 +225,7 @@ class HtmlErrorsTaskTest extends AbstractContextTest {
}
test_perform_noErrors() {
- AnalysisTarget target = newSource(
- '/test.html',
- r'''
+ AnalysisTarget target = newSource('/test.html', r'''
<!DOCTYPE html>
<html>
<head>
« no previous file with comments | « pkg/analyzer/test/src/task/dart_test.dart ('k') | pkg/analyzer/test/src/task/options_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698