summaryrefslogtreecommitdiffstats
path: root/lib/core/libimagstore/src/store.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/core/libimagstore/src/store.rs')
-rw-r--r--lib/core/libimagstore/src/store.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/core/libimagstore/src/store.rs b/lib/core/libimagstore/src/store.rs
index 1212f076..a3c09631 100644
--- a/lib/core/libimagstore/src/store.rs
+++ b/lib/core/libimagstore/src/store.rs
@@ -1293,7 +1293,7 @@ mod store_tests {
// Lets have an empty store as input
let mut input = Cursor::new(r#"
- { "version": "0.6.0",
+ { "version": "0.7.0",
"store": { }
}
"#);
@@ -1330,7 +1330,7 @@ mod store_tests {
Value::Object(ref map) => {
assert!(map.get("version").is_some(), format!("No 'version' in JSON"));
match map.get("version").unwrap() {
- &Value::String(ref s) => assert_eq!("0.6.0", s),
+ &Value::String(ref s) => assert_eq!("0.7.0", s),
_ => panic!("Wrong type in JSON at 'version'"),
}
@@ -1631,12 +1631,12 @@ mod store_tests {
// Lets have an empty store as input
let mut input = Cursor::new(r#"
- { "version": "0.6.0",
+ { "version": "0.7.0",
"store": {
"example": {
"header": {
"imag": {
- "version": "0.6.0"
+ "version": "0.7.0"
}
},
"content": "foobar"
@@ -1680,7 +1680,7 @@ mod store_tests {
Value::Object(ref map) => {
assert!(map.get("version").is_some(), format!("No 'version' in JSON"));
match map.get("version").unwrap() {
- &Value::String(ref s) => assert_eq!("0.6.0", s),
+ &Value::String(ref s) => assert_eq!("0.7.0", s),
_ => panic!("Wrong type in JSON at 'version'"),
}