Skip to content

Commit 43b7ada

Browse files
committed
Small tweak to callable_custom_eq_hash, incorporating 4.1.1-stable
1 parent 33e1c8f commit 43b7ada

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

itest/rust/src/builtin_tests/containers/callable_test.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -586,8 +586,8 @@ pub mod custom_callable {
586586

587587
let eq = match GdextBuild::godot_runtime_version_triple() {
588588
(4, 1..=3, _) => 1,
589-
(4, 4, 0) => 2, // changed in https://github.com/godotengine/godot/pull/96797.
590-
_ => 1, // changed in https://github.com/godotengine/godot/pull/103647.
589+
(4, 4, 0..=1) => 2, // changed in https://github.com/godotengine/godot/pull/96797.
590+
_ => 1, // changed in https://github.com/godotengine/godot/pull/103647.
591591
};
592592

593593
assert_eq!(eq_count(&at), eq, "hash collision, eq for a needed");

0 commit comments

Comments
 (0)