Skip to content

Commit

Permalink
Added missing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Sep 26, 2024
1 parent 21a7b22 commit 3ecc206
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
deploy:
resources:
limits:
memory: 1536m
memory: 2g

ready:
image: andrewlock/wait-for-dependencies
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Threading.Tasks;
using Foundatio.Messaging;
using Foundatio.Tests.Messaging;
Expand Down
6 changes: 6 additions & 0 deletions tests/Foundatio.Kafka.Tests/Messaging/KafkaMessageBusTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,12 @@ public override void CanDisposeWithNoSubscribersOrPublishers()
base.CanDisposeWithNoSubscribersOrPublishers();
}

[Fact]
public override Task CanSendMappedMessageAsync()
{
return base.CanSendMappedMessageAsync();
}

[Fact]
public async Task CanPersistAndNotLoseMessages()
{
Expand Down

0 comments on commit 3ecc206

Please sign in to comment.