diff options
Diffstat (limited to 'rust/builder_test.go')
-rw-r--r-- | rust/builder_test.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rust/builder_test.go b/rust/builder_test.go index 04b67d9bd..5c11cb7b5 100644 --- a/rust/builder_test.go +++ b/rust/builder_test.go @@ -28,12 +28,14 @@ func TestSourceProviderCollision(t *testing.T) { } rust_bindgen { name: "libbindings1", - stem: "bindings", + source_stem: "bindings", + crate_name: "bindings1", wrapper_src: "src/any.h", } rust_bindgen { name: "libbindings2", - stem: "bindings", + source_stem: "bindings", + crate_name: "bindings2", wrapper_src: "src/any.h", } `) |