1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-08 22:52:29 +08:00

fix(package):[function] Corrected behaviour of Nand predicate (#319)

This commit is contained in:
idichekop
2025-07-22 04:08:50 +02:00
committed by GitHub
parent 6307d624cb
commit ae1014c572
4 changed files with 8 additions and 8 deletions

View File

@@ -65,7 +65,7 @@ func TestPredicatesNandPure(t *testing.T) {
)
assert.ShouldBeFalse(isNumericAndLength5("12345"))
assert.ShouldBeFalse(isNumericAndLength5("1234"))
assert.ShouldBeTrue(isNumericAndLength5("1234"))
assert.ShouldBeTrue(isNumericAndLength5("abcdef"))
}