Skip to content

Commit 1b03f31

Browse files
Merge branch 'main' into 327-assemblyname-is-always-the-full-name-not-the-short-name
2 parents 20c3566 + 515f4e6 commit 1b03f31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ArchUnitNET/Fluent/Syntax/Elements/Members/MemberPredicatesDefinition.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ public static IPredicate<T> AreNotStatic()
364364
public static IPredicate<T> AreNotReadOnly()
365365
{
366366
return new SimplePredicate<T>(
367-
member => member.Writability == Writability.ReadOnly,
367+
member => member.Writability != Writability.ReadOnly,
368368
"are not read only"
369369
);
370370
}

0 commit comments

Comments
 (0)