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.
2 parents 20c3566 + 515f4e6 commit 1b03f31Copy full SHA for 1b03f31
ArchUnitNET/Fluent/Syntax/Elements/Members/MemberPredicatesDefinition.cs
@@ -364,7 +364,7 @@ public static IPredicate<T> AreNotStatic()
364
public static IPredicate<T> AreNotReadOnly()
365
{
366
return new SimplePredicate<T>(
367
- member => member.Writability == Writability.ReadOnly,
+ member => member.Writability != Writability.ReadOnly,
368
"are not read only"
369
);
370
}
0 commit comments