Skip to content

Commit 4ecaead

Browse files
committed
Fix tests
1 parent 19bf619 commit 4ecaead

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

src/IISIntegration/build/testsite.props

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,6 @@
4444
<Copy SourceFiles="$(MSBuildThisFileDirectory)launchSettings.json" DestinationFolder="$(MSBuildProjectDirectory)\Properties" SkipUnchangedFiles="true" />
4545
</Target>
4646

47-
<!-- Deps file injection-->
48-
<!--<ItemGroup Condition="('$(InProcessTestSite)' == 'true') AND ('$(ReferenceTestTasks)' != 'false')">
49-
<ProjectReference Include="$(MSBuildThisFileDirectory)..\test\TestTasks\TestTasks.csproj">
50-
<ReferenceOutputAssembly>False</ReferenceOutputAssembly>
51-
</ProjectReference>
52-
</ItemGroup>-->
53-
5447
<Target Name="PrepareInjectionApp" Condition="'$(InProcessTestSite)' == 'true'">
5548
<PropertyGroup>
5649
<InjectDepsAssembly>$(MSBuildThisFileDirectory)..\test\TestTasks\bin\$(Configuration)\$(TargetFramework)\TestTasks</InjectDepsAssembly>

src/IISIntegration/test/Common.FunctionalTests/CompressionTests.cs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,13 @@ public async Task PassesThroughCompression()
4949
Assert.Equal("gzip", response.Content.Headers.ContentEncoding.Single());
5050
Assert.Equal(
5151
new byte[] {
52-
0x1F, 0x8B, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00,
53-
0x04, 0x0B, 0x63, 0x60, 0xA0, 0x3D, 0x00, 0x00,
52+
0x1F, 0x8B,
53+
0x08,
54+
0x00,
55+
0x00, 0x00, 0x00, 0x00,
56+
0x04,
57+
0x0A,
58+
0x63, 0x60, 0xA0, 0x3D, 0x00, 0x00,
5459
0xCA, 0xC6, 0x88, 0x99, 0x64, 0x00, 0x00, 0x00 },
5560
await response.Content.ReadAsByteArrayAsync());
5661
}

0 commit comments

Comments
 (0)