Skip to content

Commit 27a69f3

Browse files
committed
GCI106 fix: applied copilot suggestion
1 parent 4ada83d commit 27a69f3

File tree

1 file changed

+2
-2
lines changed
  • src/it/java/org/greencodeinitiative/creedengo/python/integration/tests

1 file changed

+2
-2
lines changed

src/it/java/org/greencodeinitiative/creedengo/python/integration/tests/GCIRulesIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,10 +309,10 @@ void testGCI106() {
309309
String ruleId = "creedengo-python:GCI106";
310310
String ruleMsg = "Avoid using scalar sqrt functions in loops. Apply vectorized sqrt operations on arrays directly.";
311311
int[] startLines = new int[]{
312-
7, 11, 16, 21, 45, 60
312+
7, 11, 16, 21, 45, 52, 60
313313
};
314314
int[] endLines = new int[]{
315-
7, 11, 16, 21, 45, 60
315+
7, 11, 16, 21, 45, 52, 60
316316
};
317317
checkIssuesForFile(filePath, ruleId, ruleMsg, startLines, endLines, SEVERITY, TYPE, EFFORT_5MIN);
318318
}

0 commit comments

Comments
 (0)