From b0a0ea46156145624d74794d8c3cc942e5da4e75 Mon Sep 17 00:00:00 2001 From: Safia Abdalla Date: Mon, 27 Mar 2023 12:41:21 -0700 Subject: [PATCH] Remove dotnet.timezones.blat assertion --- .../WasmBuildIntegrationTest.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs index ee17d3cb3e60..17be296f25b1 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs @@ -40,7 +40,6 @@ public void BuildMinimal_Works() new FileInfo(Path.Combine(buildOutputDirectory, "wwwroot", "_framework", "blazor.boot.json")).Should().Exist(); new FileInfo(Path.Combine(buildOutputDirectory, "wwwroot", "_framework", "blazor.webassembly.js")).Should().Exist(); new FileInfo(Path.Combine(buildOutputDirectory, "wwwroot", "_framework", "dotnet.wasm")).Should().Exist(); - new FileInfo(Path.Combine(buildOutputDirectory, "wwwroot", "_framework", "dotnet.timezones.blat")).Should().Exist(); new FileInfo(Path.Combine(buildOutputDirectory, "wwwroot", "_framework", "dotnet.wasm.gz")).Should().Exist(); new FileInfo(Path.Combine(buildOutputDirectory, "wwwroot", "_framework", "blazorwasm-minimal.dll")).Should().Exist(); } @@ -289,7 +288,6 @@ public void Build_WithInvariantGlobalizationEnabled_DoesNotCopyGlobalizationData bootJsonData.icuDataMode.Should().Be(ICUDataMode.Invariant); var runtime = bootJsonData.resources.runtime; runtime.Should().ContainKey("dotnet.wasm"); - runtime.Should().ContainKey("dotnet.timezones.blat"); runtime.Should().NotContainKey("icudt.dat"); runtime.Should().NotContainKey("icudt_EFIGS.dat"); @@ -329,7 +327,6 @@ public void Publish_WithInvariantGlobalizationEnabled_DoesNotCopyGlobalizationDa bootJsonData.icuDataMode.Should().Be(ICUDataMode.Invariant); var runtime = bootJsonData.resources.runtime; runtime.Should().ContainKey("dotnet.wasm"); - runtime.Should().ContainKey("dotnet.timezones.blat"); runtime.Should().NotContainKey("icudt.dat"); runtime.Should().NotContainKey("icudt_EFIGS.dat"); @@ -369,7 +366,6 @@ public void Build_WithBlazorWebAssemblyLoadAllGlobalizationData_SetsICUDataMode( var runtime = bootJsonData.resources.runtime; runtime.Should().ContainKey("dotnet.wasm"); - runtime.Should().ContainKey("dotnet.timezones.blat"); runtime.Should().ContainKey("icudt.dat"); runtime.Should().ContainKey("icudt_EFIGS.dat"); @@ -409,7 +405,6 @@ public void Publish_WithBlazorWebAssemblyLoadAllGlobalizationData_SetsICUDataMod var runtime = bootJsonData.resources.runtime; runtime.Should().ContainKey("dotnet.wasm"); - runtime.Should().ContainKey("dotnet.timezones.blat"); runtime.Should().ContainKey("icudt.dat"); runtime.Should().ContainKey("icudt_EFIGS.dat");