File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ public void Setup()
7676 public void ShouldEnsureTheSubscriptionIsOpenWhenPolling ( )
7777 {
7878 Subscription . Dispose ( ) ;
79- Assert . True ( Subscription . Closed ) ;
79+ Assert . True ( Subscription . IsClosed ) ;
8080
8181 A . CallTo ( ( ) => Conductor . ReleaseSubscription ( Subscription ) ) . MustHaveHappened ( ) ;
8282 }
Original file line number Diff line number Diff line change @@ -478,7 +478,7 @@ internal virtual void ReleaseSubscription(Subscription subscription)
478478 _clientLock . Lock ( ) ;
479479 try
480480 {
481- if ( ! subscription . Closed )
481+ if ( ! subscription . IsClosed )
482482 {
483483 EnsureOpen ( ) ;
484484 EnsureNotReentrant ( ) ;
Original file line number Diff line number Diff line change @@ -423,7 +423,7 @@ public void Dispose()
423423 /// Has this object been closed and should no longer be used?
424424 /// </summary>
425425 /// <returns> true if it has been closed otherwise false. </returns>
426- public bool Closed => _fields . isClosed ;
426+ public bool IsClosed => _fields . isClosed ;
427427
428428
429429 /// <summary>
You can’t perform that action at this time.
0 commit comments