Skip to content

Commit 06fdc47

Browse files
committed
fix(ShadowDomComponentFactory): Make Windows & Linux return the same response
The "\n" would be stripped on windows platforms resulting in responses having a different content.
1 parent c1bcd9b commit 06fdc47

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/core/templateurl_spec.dart

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ _run({resolveUrls, staticMode}) {
8787
if (!resolveUrls) prefix = "";
8888
else if (staticMode) prefix = "packages/test.angular.core_dom/";
8989
else prefix = TEST_SERVER_BASE_PREFIX + "test/core/";
90-
90+
9191
describe('template url resolveUrls=${resolveUrls}, mode=${staticMode ? 'static' : 'dynamic'}', () {
9292
TestBed _;
9393

@@ -174,8 +174,6 @@ _run({resolveUrls, staticMode}) {
174174
// Note: There is no ordering. It is who ever comes off the wire first!
175175
expect(log.result()).toEqual('LOG; LOG; SIMPLE; SIMPLE');
176176
}));
177-
});
178-
179177

180178
describe('css loading (shadow dom components)', () {
181179
beforeEachModule((Module module) {

0 commit comments

Comments
 (0)