Skip to content

Commit

Permalink
Fix code scanning alert no. 45: Implicit narrowing conversion in comp…
Browse files Browse the repository at this point in the history
…ound assignment (#1768)

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
  • Loading branch information
robfrank and github-advanced-security[bot] authored Oct 19, 2024
1 parent 29a0bff commit f937a09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ public void testImportCSVConsoleOK() throws IOException {
newConsole.close();

int vertices = 0;
int edges = 0;
long edges = 0;

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

0 comments on commit f937a09

Please sign in to comment.