Index: test/windows_test.dart |
diff --git a/test/windows_test.dart b/test/windows_test.dart |
index 69428378dc2a6496924f6f83f736e295661b5b27..a32f1fec15458f96a2f6f02b6fe3f10cb91a0494 100644 |
--- a/test/windows_test.dart |
+++ b/test/windows_test.dart |
@@ -4,7 +4,7 @@ |
library path.test.windows_test; |
-import 'package:unittest/unittest.dart'; |
+import 'package:test/test.dart'; |
import 'package:path/path.dart' as path; |
import 'utils.dart'; |
@@ -13,7 +13,7 @@ main() { |
var context = |
new path.Context(style: path.Style.windows, current: r'C:\root\path'); |
- group('separator', () { |
Bob Nystrom
2015/07/16 15:42:16
Oops.
|
+ test('separator', () { |
expect(context.separator, '\\'); |
}); |