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

Unified Diff: test/runner/loader_test.dart

Issue 1239693002: Pass actual TestPlatform and OperatingSystem values to Suite. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Update pubspec. Created 5 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 | « test/runner/load_suite_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/runner/loader_test.dart
diff --git a/test/runner/loader_test.dart b/test/runner/loader_test.dart
index 039055765c250013d7e186f21ccd990fbb461583..02e8af9dadad4885d38e089bd03fb7afa08ffb41 100644
--- a/test/runner/loader_test.dart
+++ b/test/runner/loader_test.dart
@@ -59,7 +59,7 @@ void main() {
test("returns a suite with the file path and platform", () {
expect(suite.path, equals(p.join(_sandbox, 'a_test.dart')));
- expect(suite.platform, equals('VM'));
+ expect(suite.platform, equals(TestPlatform.vm));
});
test("returns tests with the correct names and platforms", () {
« no previous file with comments | « test/runner/load_suite_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698