Skip to content

Commit 1be5514

Browse files
committed
Fixed 2 tests with minor mistakes
1 parent 68a9c7a commit 1be5514

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ir/term/test.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ fn fpmax_tests() {
872872
&text::parse_term(b"(fpmax #fp-0 #fp0)"),
873873
&FxHashMap::default()
874874
)),
875-
text::parse_term(b"#fp0")
875+
text::parse_term(b"#fp-0") // interesting
876876
);
877877
}
878878

@@ -1030,7 +1030,7 @@ fn fpgt_tests() {
10301030
);
10311031
assert_eq!(
10321032
const_(eval(
1033-
&text::parse_term(b"(fplt #fpInf #fp0)"),
1033+
&text::parse_term(b"(fpgt #fpInf #fp0)"),
10341034
&FxHashMap::default()
10351035
)),
10361036
text::parse_term(b"true")

0 commit comments

Comments
 (0)