1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-08-06 12:02:40 +03:00

bump to olm 2.1.0

This commit is contained in:
Richard van der Hoff
2016-12-23 14:36:22 +00:00
parent c8565be3a5
commit 14fac241f7
2 changed files with 2 additions and 2 deletions

View File

@@ -56,6 +56,6 @@
"watchify": "^3.2.1" "watchify": "^3.2.1"
}, },
"optionalDependencies": { "optionalDependencies": {
"olm": "https://matrix.org/packages/npm/olm/olm-2.0.0.tgz" "olm": "https://matrix.org/packages/npm/olm/olm-2.1.0.tgz"
} }
} }

View File

@@ -9,6 +9,6 @@ describe("Crypto", function() {
} }
it("Crypto exposes the correct olm library version", function() { it("Crypto exposes the correct olm library version", function() {
expect(Crypto.getOlmVersion()).toEqual([2, 0, 0]); expect(Crypto.getOlmVersion()[0]).toEqual(2);
}); });
}); });