From e4751ad3a36952aa272f950ffb357e40cc0536ed Mon Sep 17 00:00:00 2001 From: tbro Date: Fri, 13 Oct 2023 16:43:38 -0500 Subject: [PATCH] add a comment explaining why the dummy test is there --- rustls-cert-gen/src/main.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rustls-cert-gen/src/main.rs b/rustls-cert-gen/src/main.rs index ce047abb..567d3f96 100644 --- a/rustls-cert-gen/src/main.rs +++ b/rustls-cert-gen/src/main.rs @@ -37,6 +37,10 @@ fn main() -> Result<(), Box> { Ok(()) } + +// FIXME remove this when this file gets updated. This dummy test s +// here to demonstrate that tests are being run against both crates in +// CI #[test] fn test_add() { assert_eq!(1 + 1, 2)