From e20ade53bc47fde9d3160aa20555a31aa46cd686 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 7 Mar 2019 10:45:01 -0800 Subject: [PATCH] Fix tests on master This fixes an accidental regression from #554 which was in turn an accidental regression from #526 --- tests/all/utils/fixture.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/all/utils/fixture.rs b/tests/all/utils/fixture.rs index a2cf8a4..fced91c 100644 --- a/tests/all/utils/fixture.rs +++ b/tests/all/utils/fixture.rs @@ -137,7 +137,12 @@ impl Fixture { crate-type = ["cdylib"] [dependencies] - wasm-bindgen = "0.2" + # Note that this uses and `=` dependency because there are + # various tests which assert that the version of wasm + # bindgen downloaded is what we expect, and if `=` is + # removed then it will download whatever the newest version + # of wasm-bindgen is which may not be what's listed here. + wasm-bindgen = "=0.2.37" [dev-dependencies] wasm-bindgen-test = "0.2"