Skip to content

Commit 5638740

Browse files
committed
Fix 2 trivial tech issues
1 parent 921e9ed commit 5638740

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Tests/CSF.Screenplay.Tests/ActorTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,12 @@ public void PerformAsyncWithGenericResultShouldThrowIfCalledAfterActorIsDisposed
109109
Assert.That(() => ((ICanPerform) sut).PerformAsync(performable), Throws.InstanceOf<ObjectDisposedException>());
110110
}
111111

112-
public class DisposableAbility1 : IDisposable
112+
public sealed class DisposableAbility1 : IDisposable
113113
{
114114
public virtual void Dispose() {}
115115
}
116116

117-
public class DisposableAbility2 : IDisposable
117+
public sealed class DisposableAbility2 : IDisposable
118118
{
119119
public virtual void Dispose() {}
120120
}

0 commit comments

Comments
 (0)