[tests] Fix missing space in failure message

Change-Id: I7d02362076fc17379dc67c98b87f96866dbde7aa
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/122403
Reviewed-by: Bob Nystrom <rnystrom@google.com>
Commit-Queue: Nicholas Shahan <nshahan@google.com>
This commit is contained in:
Nicholas Shahan 2019-10-21 23:09:42 +00:00 committed by commit-bot@chromium.org
parent a0291729f5
commit 929a306bfc

View file

@ -629,7 +629,7 @@ class Expect {
static void notType<T>(dynamic object, [String reason = ""]) {
if (object is! T) return;
String msg = _getMessage(reason);
_fail("Expect.type($object is! $T$msg) fails"
_fail("Expect.type($object is! $T$msg) fails "
"on ${Error.safeToString(object)}");
}