Skip to content

Commit 14499a9

Browse files
authored
fix(az.sb.test): add missing queue w/ session teardown (#652)
The Azure Service Bus queue with session-support was not teared down in the integration tests, this PR fixes that.
1 parent 375c981 commit 14499a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Arcus.Messaging.Tests.Integration/MessagePump/ServiceBusMessagePumpTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,9 @@ public async ValueTask DisposeAsync()
9595
{
9696
await using var disposables = new DisposableCollection(NullLogger.Instance);
9797
disposables.Add(Queue);
98+
disposables.Add(QueueWithSession);
9899
disposables.Add(Topic);
99100
disposables.Add(_client);
100101
}
101102
}
102-
}
103+
}

0 commit comments

Comments
 (0)