Skip to content

Commit 15a37fa

Browse files
test: update instrumentation test for assertion type inference
The behavior mode instrumentation test expected `Object _cf_result1` but after the type inference fix, assertEquals(4, call()) now produces `int _cf_result1 = (int)_cf_result1_1`. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 342a9c5 commit 15a37fa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_languages/test_java/test_instrumentation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1324,7 +1324,7 @@ def test_instrument_generated_test_behavior_mode(self):
13241324
}
13251325
}
13261326
}
1327-
Object _cf_result1 = _cf_result1_1;
1327+
int _cf_result1 = (int)_cf_result1_1;
13281328
}
13291329
}
13301330
"""

0 commit comments

Comments
 (0)