Commit 73148a55 authored by Tristan Cavelier's avatar Tristan Cavelier

gidstorage get tests, expecting wrong id -> fixed

parent 8c389cf1
......@@ -8053,7 +8053,10 @@ test("Get", function () {
o.jio.get({"_id": "{\"identifier\":[\"c\"]}"}, o.f);
o.tick(o);
o.spy(o, 'value', {"_id": "red", "identifier": ["ac", "b"]}, 'Get document');
o.spy(o, 'value', {
"_id": "{\"identifier\":[\"b\"]}",
"identifier": ["ac", "b"]
}, 'Get document');
o.jio.get({"_id": "{\"identifier\":[\"b\"]}"}, o.f);
o.tick(o);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment