@@ -11,7 +11,6 @@ public class WasmBuildIntegrationTest(ITestOutputHelper log) : BlazorWasmBaselin
11
11
{
12
12
private static string customIcuFilename = "icudt_custom.dat" ;
13
13
private static string fullIcuFilename = "icudt.dat" ;
14
- private static string hybridIcuFilename = "icudt_hybrid.dat" ;
15
14
private static string [ ] icuShardFilenames = new string [ ] {
16
15
"icudt_EFIGS.dat" ,
17
16
"icudt_CJK.dat" ,
@@ -491,15 +490,13 @@ public void Build_WithBlazorWebAssemblyLoadAllGlobalizationData_SetsICUDataMode(
491
490
492
491
bootJsonData . resources . wasmNative . Should ( ) . ContainKey ( "dotnet.native.wasm" ) ;
493
492
bootJsonData . resources . icu . Should ( ) . ContainKey ( fullIcuFilename ) ;
494
- bootJsonData . resources . icu . Should ( ) . NotContainKey ( hybridIcuFilename ) ;
495
493
foreach ( var shardFilename in icuShardFilenames )
496
494
{
497
495
bootJsonData . resources . icu . Should ( ) . NotContainKey ( shardFilename ) ;
498
496
}
499
497
500
498
new FileInfo ( Path . Combine ( buildOutputDirectory , "wwwroot" , "_framework" , "dotnet.native.wasm" ) ) . Should ( ) . Exist ( ) ;
501
499
new FileInfo ( Path . Combine ( buildOutputDirectory , "wwwroot" , "_framework" , fullIcuFilename ) ) . Should ( ) . Exist ( ) ;
502
- new FileInfo ( Path . Combine ( buildOutputDirectory , "wwwroot" , "_framework" , hybridIcuFilename ) ) . Should ( ) . NotExist ( ) ;
503
500
foreach ( var shardFilename in icuShardFilenames )
504
501
{
505
502
new FileInfo ( Path . Combine ( buildOutputDirectory , "wwwroot" , "_framework" , shardFilename ) ) . Should ( ) . NotExist ( ) ;
@@ -535,15 +532,13 @@ public void Publish_WithBlazorWebAssemblyLoadAllGlobalizationData_SetsGlobalizat
535
532
536
533
bootJsonData . resources . wasmNative . Should ( ) . ContainKey ( "dotnet.native.wasm" ) ;
537
534
bootJsonData . resources . icu . Should ( ) . ContainKey ( fullIcuFilename ) ;
538
- bootJsonData . resources . icu . Should ( ) . NotContainKey ( hybridIcuFilename ) ;
539
535
foreach ( var shardFilename in icuShardFilenames )
540
536
{
541
537
bootJsonData . resources . icu . Should ( ) . NotContainKey ( shardFilename ) ;
542
538
}
543
539
544
540
new FileInfo ( Path . Combine ( publishDirectory , "wwwroot" , "_framework" , "dotnet.native.wasm" ) ) . Should ( ) . Exist ( ) ;
545
541
new FileInfo ( Path . Combine ( publishDirectory , "wwwroot" , "_framework" , fullIcuFilename ) ) . Should ( ) . Exist ( ) ;
546
- new FileInfo ( Path . Combine ( publishDirectory , "wwwroot" , "_framework" , hybridIcuFilename ) ) . Should ( ) . NotExist ( ) ;
547
542
foreach ( var shardFilename in icuShardFilenames )
548
543
{
549
544
new FileInfo ( Path . Combine ( publishDirectory , "wwwroot" , "_framework" , shardFilename ) ) . Should ( ) . NotExist ( ) ;
0 commit comments