We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6ec295 commit aa8be0bCopy full SHA for aa8be0b
src/ReactiveUI.Extensions.Tests/ReactiveExtensionsTests.cs
@@ -241,7 +241,7 @@ public void SubscribeAsync_RunsWithAsyncTasksInSubscriptions()
241
[Test]
242
public void BufferUntil_WithStartAndEndChars_BuffersCorrectly()
243
{
244
- var subject = new Subject<char>();
+ using var subject = new Subject<char>();
245
var results = new List<string>();
246
using var sub = subject.BufferUntil('<', '>').Subscribe(results.Add);
247
0 commit comments