summaryrefslogtreecommitdiff
path: root/tests/tests.rs
diff options
context:
space:
mode:
authorJethro Beekman <jethro@fortanix.com>2021-03-09 23:02:59 +0100
committerEmilio Cobos Álvarez <emilio@crisal.io>2021-03-11 12:36:52 +0100
commitaf87a859ac67ac90123a52fcaf7c0b407a656ee2 (patch)
treeb1d10b29bf645bfbac292a90cf0fb4b0430b80ae /tests/tests.rs
parent84c702036ed17058a4a47818161023acc70eb755 (diff)
Fix typo in roundtrip test error message
Diffstat (limited to 'tests/tests.rs')
-rw-r--r--tests/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tests.rs b/tests/tests.rs
index 7bf2c65c..4e38c114 100644
--- a/tests/tests.rs
+++ b/tests/tests.rs
@@ -267,7 +267,7 @@ fn compare_generated_header(
if let Err(e) =
compare_generated_header(&header, roundtrip_builder, false)
{
- return Err(Error::new(ErrorKind::Other, format!("Checking CLI flags roundtrip errored! You probably need to fix Builder::command_line_args. {}", e)));
+ return Err(Error::new(ErrorKind::Other, format!("Checking CLI flags roundtrip errored! You probably need to fix Builder::command_line_flags. {}", e)));
}
}