Index: tests/html/shadow_dom_test.dart |
diff --git a/tests/html/shadow_dom_test.dart b/tests/html/shadow_dom_test.dart |
index 749f490dcc211041654d4f0429df8e5189610506..522247f50d79cf08939374f0da1084c585fb8f57 100644 |
--- a/tests/html/shadow_dom_test.dart |
+++ b/tests/html/shadow_dom_test.dart |
@@ -3,13 +3,13 @@ |
// BSD-style license that can be found in the LICENSE file. |
#library('ShadowDOMTest'); |
-#import('../../pkg/unittest/unittest.dart'); |
-#import('../../pkg/unittest/html_config.dart'); |
+#import('../../pkg/unittest/lib/unittest.dart'); |
+#import('../../pkg/unittest/lib/html_config.dart'); |
#import('dart:html'); |
main() { |
useHtmlConfiguration(); |
- |
+ |
group('ShadowDOM tests', () { |
var div1, div2, shadowRoot, paragraph1, paragraph2; |
@@ -39,7 +39,7 @@ main() { |
expect(shadowRoot.parent, isNull); |
}); |
- |
+ |
// TODO(samhop): test that <content> and <content select="foo"> and |
// <shadow> |
// work properly. This is blocked on having a good way to do browser |
@@ -47,6 +47,6 @@ main() { |
test('Querying in shadowed fragment respects the shadow boundary.', () { |
expect(shadowRoot.queryAll('.foo'), equals([paragraph1])); |
- }); |
+ }); |
}); |
} |