Skip to content

Commit

Permalink
Adds type String in kvstore test
Browse files Browse the repository at this point in the history
  • Loading branch information
Blocs committed Feb 29, 2020
1 parent c262d2c commit 70de065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/kvstore_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const CIPHER: std::option::Option<[&str; 2]> = Some([

const DATA: [u8; 512] = [42u8; 512];

const KEY = String::from("test_value");
const KEY: String = String::from("test_value");

fn init_kv() -> KvStore {
let kv = KvStore::new(CIPHER);
Expand Down

0 comments on commit 70de065

Please sign in to comment.