From f3d52e08907324152f4fb2d5f6c096d21986954f Mon Sep 17 00:00:00 2001
From: Natalie Weizenbaum <nex342@gmail.com>
Date: Thu, 29 Sep 2016 18:15:57 -0700
Subject: [PATCH] Fix a typo. (#476)

---
 lib/src/backend/declarer.dart | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/src/backend/declarer.dart b/lib/src/backend/declarer.dart
index 525a72b2..635f65f3 100644
--- a/lib/src/backend/declarer.dart
+++ b/lib/src/backend/declarer.dart
@@ -85,7 +85,7 @@ class Declarer {
   /// entries built by the declarer. Note that this can be noticeably slow when
   /// thousands of tests are being declared (see #457).
   Declarer({Metadata metadata, bool collectTraces: false})
-      : this._(null, null, metadata? ?? new Metadata(), collectTraces, null);
+      : this._(null, null, metadata ?? new Metadata(), collectTraces, null);
 
   Declarer._(this._parent, this._name, this._metadata, this._collectTraces,
       this._trace);
-- 
GitLab