Index: lib/src/backend/metadata.dart |
diff --git a/lib/src/backend/metadata.dart b/lib/src/backend/metadata.dart |
index bf58b3f5d2e984420b0f55874f294d5973bdb351..f745b28e85f7ecd23265b831625259e49955cc3d 100644 |
--- a/lib/src/backend/metadata.dart |
+++ b/lib/src/backend/metadata.dart |
@@ -23,7 +23,7 @@ class Metadata { |
/// [testOn] defaults to [PlatformSelector.all]. |
Metadata({PlatformSelector testOn, Timeout timeout}) |
: testOn = testOn == null ? PlatformSelector.all : testOn, |
- timeout = timeout == null ? new Timeout.factor(1) : timeout; |
+ timeout = timeout == null ? const Timeout.factor(1) : timeout; |
/// Creates a new Metadata, but with fields parsed from strings where |
/// applicable. |