Index: test/regression/122.unit |
diff --git a/test/regression/122.unit b/test/regression/122.unit |
index b4a0794ce5f7bf2eecb79b85ee9c52d2c1a0bc04..376f0efdece60e41a919b737127036212eb053e3 100644 |
--- a/test/regression/122.unit |
+++ b/test/regression/122.unit |
@@ -5,11 +5,11 @@ var xsrfValue = _urlIsSameOrigin(url) ? |
defaults.xsrfCookieName] : |
null; |
<<< |
-var xsrfValue = _urlIsSameOrigin(url) ? |
- _cookies[xsrfCookieName != null ? |
- xsrfCookieName : |
- defaults.xsrfCookieName] : |
- null; |
+var xsrfValue = _urlIsSameOrigin(url) |
+ ? _cookies[xsrfCookieName != null |
+ ? xsrfCookieName |
+ : defaults.xsrfCookieName] |
+ : null; |
>>> |
class _Streams { |
_Streams(this._scope, this._exceptionHandler, _Streams inheritStreams) |
@@ -20,7 +20,7 @@ class _Streams { |
<<< |
class _Streams { |
_Streams(this._scope, this._exceptionHandler, _Streams inheritStreams) |
- : _typeCounts = inheritStreams == null ? |
- new HashMap<String, int>() : |
- new HashMap.from(inheritStreams._typeCounts); |
+ : _typeCounts = inheritStreams == null |
+ ? new HashMap<String, int>() |
+ : new HashMap.from(inheritStreams._typeCounts); |
} |