Skip to content

Commit

Permalink
Remove dotnet.timezones.blat assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
captainsafia committed Mar 27, 2023
1 parent 88db657 commit b0a0ea4
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down Expand Up @@ -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");
Expand Down Expand Up @@ -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");
Expand Down Expand Up @@ -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");

Expand Down Expand Up @@ -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");

Expand Down

0 comments on commit b0a0ea4

Please sign in to comment.