Skip to content

Commit 531c3b9

Browse files
committed
Updated test convention for skipped on x86
1 parent 816ba2b commit 531c3b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LightningDB.Tests/TestConventions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ public IEnumerable<Type> TestClasses(IEnumerable<Type> concreteClasses)
3636
public IEnumerable<MethodInfo> TestMethods(IEnumerable<MethodInfo> publicMethods)
3737
=> publicMethods
3838
.Where(x => !x.IsStatic)
39-
.Where(x => !x.Name.EndsWith("OnlyOn64BitPlatform") || RuntimeInformation.OSArchitecture != Architecture.X86);
40-
}
39+
.Where(x => !x.Name.EndsWith("only_on_64bit_platform") || RuntimeInformation.OSArchitecture != Architecture.X86);
40+
}

0 commit comments

Comments
 (0)