diff options
author | Josh Channings <josh.channings@music-group.com> | 2018-11-09 09:50:27 +0000 |
---|---|---|
committer | Josh Channings <josh.channings@music-group.com> | 2018-11-09 09:50:27 +0000 |
commit | 56e8cf97c9368e0bc9f20f5f66ca2a3773ab97b3 (patch) | |
tree | 28b3ac5d0f3776c50ec9335399ac38963ec41ad9 | |
parent | 0275c4cb30aa4b30016ff79c5e092955a80ec238 (diff) |
Fix unit tests for `--generate functions` arg
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2053,7 +2053,7 @@ fn commandline_flag_unit_test_function() { "--rust-target", "--no-derive-default", "--generate", - "function,types,vars,methods,constructors,destructors", + "functions,types,vars,methods,constructors,destructors", ].iter() .map(|&x| x.into()) .collect::<Vec<String>>(); @@ -2074,7 +2074,7 @@ fn commandline_flag_unit_test_function() { "input_header", "--no-derive-default", "--generate", - "function,types,vars,methods,constructors,destructors", + "functions,types,vars,methods,constructors,destructors", "--whitelist-type", "Distinct_Type", "--whitelist-function", |