Skip to content

Commit

Permalink
Test when no fifo input
Browse files Browse the repository at this point in the history
  • Loading branch information
adam.gloyne committed Oct 30, 2023
1 parent 2ef2b73 commit 0846aa5
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions test/LEGO.AsyncAPI.Tests/Bindings/Sqs/SqsBindings_should.cs
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,6 @@ public void SqsOperationBinding_WithFilledObject_SerializesAndDeserializes()
sqs:
queues:
- name: myQueue
fifoQueue: true
deduplicationScope: queue
fifoThroughputLimit: perQueue
deliveryDelay: 30
visibilityTimeout: 60
receiveMessageWaitTime: 0
Expand Down Expand Up @@ -297,9 +294,9 @@ public void SqsOperationBinding_WithFilledObject_SerializesAndDeserializes()
new Queue()
{
Name = "myQueue",
FifoQueue = true,
DeduplicationScope = DeduplicationScope.Queue,
FifoThroughputLimit = FifoThroughputLimit.PerQueue,
FifoQueue = false,
DeduplicationScope = null,
FifoThroughputLimit = null,
DeliveryDelay = 30,
VisibilityTimeout = 60,
ReceiveMessageWaitTime = 0,
Expand Down

0 comments on commit 0846aa5

Please sign in to comment.