Browse Source

chore(core): fix clippy warnings

Lucas Nogueira 3 years ago
parent
commit
06cbc1ee57
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/tauri/src/manager.rs

+ 1 - 1
core/tauri/src/manager.rs

@@ -1245,7 +1245,7 @@ mod tests {
       "tauri is awesome, tauri is amazing",
       "tauri",
       || {
-        tauri_index = tauri_index + 1;
+        tauri_index += 1;
         tauri_index.to_string()
       },
       "1 is awesome, 2 is amazing",