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

Unified Diff: utils/tests/css/selector_literal_tests.dart

Issue 9956037: Simplify tests under utils/tests to follow StandardTestSuite convention. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
Index: utils/tests/css/selector_literal_tests.dart
diff --git a/utils/tests/css/src/SelectorLiteralTest.dart b/utils/tests/css/selector_literal_tests.dart
similarity index 97%
rename from utils/tests/css/src/SelectorLiteralTest.dart
rename to utils/tests/css/selector_literal_tests.dart
index 4f0b499ee657ab2f76b2dd350c6c9069e96e30ab..ba07ea93436fd9b0f0b1dbed3d8d4a43cb552102 100644
--- a/utils/tests/css/src/SelectorLiteralTest.dart
+++ b/utils/tests/css/selector_literal_tests.dart
@@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-#import("../../../css/css.dart");
+#import("../../css/css.dart");
class SelectorLiteralTest {
static final String ERROR = 'CompilerException: <buffer>:';
@@ -136,7 +136,7 @@ class SelectorLiteralTest {
e.toString());
}
- // class and element id not allowed together.
+ // class and element id not allowed together.
css = '@{.foobar foo|div}';
try {
cssParseAndValidate('${css}', cssWorld);
@@ -146,7 +146,7 @@ class SelectorLiteralTest {
e.toString());
}
- // Element id and namespace not allowed together.
+ // Element id and namespace not allowed together.
css = '@{#id1 foo|div}';
try {
cssParseAndValidate('${css}', cssWorld);
@@ -156,7 +156,7 @@ class SelectorLiteralTest {
e.toString());
}
- // namespace and element id not allowed together.
+ // namespace and element id not allowed together.
css = '@{foo|div #id1}';
try {
cssParseAndValidate('${css}', cssWorld);

Powered by Google App Engine
This is Rietveld 408576698