Skip to content

Commit a8f4fa4

Browse files
authored
Merge pull request #1411 from godot-rust/bugfix/gstring-find-workaround
Temporarily disable `GString::find()` itest due to upstream bug
2 parents e01d2ea + cd1019d commit a8f4fa4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

itest/rust/src/builtin_tests/string/gstring_test.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,8 @@ fn string_substr() {
145145
assert_eq!(string.substr(2..=4), "abl".into());
146146
}
147147

148-
#[itest]
148+
// TODO(v0.5): enable after https://github.com/godotengine/godot/pull/113044 is merged.
149+
#[itest(skip)]
149150
fn gstring_find() {
150151
let s = GString::from("Hello World");
151152

0 commit comments

Comments
 (0)