Skip to content

Commit c29b678

Browse files
committed
Remove mut in Dict test
1 parent 95812e9 commit c29b678

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/dictdatatype.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ mod tests {
490490
#[test]
491491
fn test_insert() {
492492
let vm: VirtualMachine = Default::default();
493-
let mut dict = Dict::default();
493+
let dict = Dict::default();
494494
assert_eq!(0, dict.len());
495495

496496
let key1 = vm.new_bool(true);

0 commit comments

Comments
 (0)