Skip to content

Commit 6690631

Browse files
committed
Slightly reformat #[itest(focus)] in comments, so it doesn't appear in search
1 parent 364051c commit 6690631

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/composite/godot-itest/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ runs:
176176
# since it's not available on Windows, use taskkill in that case.
177177
# * exit: the terminated process would return 143, but this is more explicit and future-proof
178178
#
179-
# --disallow-focus: fail if #[itest(focus)] is encountered, to prevent running only a few tests for full CI
179+
# --disallow-focus: fail if #[itest (focus)] is encountered, to prevent running only a few tests for full CI
180180
run: |
181181
cd itest/godot
182182
echo "OUTCOME=itest" >> $GITHUB_ENV

itest/rust/src/object_tests/dynamic_call_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ fn dynamic_call_parameter_mismatch() {
140140
obj.free();
141141
}
142142

143-
// There seems to be a weird bug where running *only* this test with #[itest(focus)] causes panic, which then causes a
143+
// There seems to be a weird bug where running *only* this test with #[itest (focus)] causes panic, which then causes a
144144
// follow-up failure of Gd::bind_mut(), preventing benchmarks from being run. Doesn't happen with #[itest], when running all.
145145
#[itest]
146146
fn dynamic_call_with_panic() {

itest/rust/src/register_tests/constant_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ godot::sys::plugin_add!(
180180
macro_rules! test_enum_export {
181181
(
182182
$class:ty, $enum_name:ident, [$($enumerators:ident),* $(,)?];
183-
// Include the `attr` here to, so we can easily do things like `#[itest(focus)]`.
183+
// Include the `attr` here too, so we can easily do things like `#[itest (focus)]`.
184184
#$attr:tt
185185
fn $test_name:ident() { .. }
186186
) => {

0 commit comments

Comments
 (0)