Skip to content

Commit

Permalink
Fixed one test
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Sep 27, 2024
1 parent 7efcdd0 commit 4bc9c80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Foundatio.Redis.Tests/Queues/RedisQueueTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public override Task CanQueueAndDequeueWorkItemAsync()
return base.CanQueueAndDequeueWorkItemAsync();
}

[Fact]
[Fact(Skip = "DeliveryDelay is not supported")]
public override Task CanQueueAndDequeueWorkItemWithDelayAsync()
{
return base.CanQueueAndDequeueWorkItemWithDelayAsync();
Expand Down Expand Up @@ -742,7 +742,7 @@ private IQueue<T> CreateQueue<T>(bool allQueuesTheSameName = true) where T : cla
.LoggerFactory(Log)
);

_logger.LogDebug("Queue Id: {queueId}", queue.QueueId);
_logger.LogDebug("Queue Id: {QueueId}", queue.QueueId);
return queue;
}

Expand Down

0 comments on commit 4bc9c80

Please sign in to comment.