Don't return empty dictionary object for response headers in JSON mapping (#424)

This commit is contained in:
Stef Heyenrath
2020-02-22 11:07:04 +01:00
committed by GitHub
parent d1b42bf436
commit e6bcd625f7
3 changed files with 9 additions and 9 deletions

View File

@@ -1,6 +1,5 @@
using System;
using FluentAssertions;
using Moq;
using WireMock.RequestBuilders;
using WireMock.ResponseBuilders;
using WireMock.Serialization;
@@ -36,6 +35,7 @@ namespace WireMock.Net.Tests.Serialization
model.Priority.Should().BeNull();
model.Response.BodyAsJsonIndented.Should().BeNull();
model.Response.UseTransformer.Should().BeNull();
model.Response.Headers.Should().BeNull();
}
[Fact]