Skip to content

Commit

Permalink
fix: fix integration test after cr
Browse files Browse the repository at this point in the history
  • Loading branch information
fasazevedo committed Mar 27, 2024
1 parent 47f2b46 commit 80474d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/KafkaFlow.IntegrationTests/ProducerTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public async Task ProduceNullMessageTest()
var key = Guid.NewGuid().ToString();

// Act
await producer.ProduceAsync(key, null);
await producer.ProduceAsync(key, Array.Empty<byte>());

// Assert
await MessageStorage.AssertNullMessageAsync();
Expand Down

0 comments on commit 80474d3

Please sign in to comment.