Skip to content

Commit ac27d57

Browse files
Fix code scanning alert no. 45: Implicit narrowing conversion in compound assignment
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
1 parent 29a0bff commit ac27d57

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

console/src/test/java/com/arcadedb/console/ConsoleTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ public void testImportCSVConsoleOK() throws IOException {
321321
newConsole.close();
322322

323323
int vertices = 0;
324-
int edges = 0;
324+
long edges = 0;
325325

326326
try (final DatabaseFactory factory = new DatabaseFactory("./target/databases/" + DATABASE_PATH)) {
327327
try (final Database database = factory.open()) {

0 commit comments

Comments
 (0)