Skip to content

Commit

Permalink
add a comment explaining why the dummy test is there
Browse files Browse the repository at this point in the history
  • Loading branch information
tbro committed Oct 13, 2023
1 parent d36a50a commit e4751ad
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions rustls-cert-gen/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
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)
Expand Down

0 comments on commit e4751ad

Please sign in to comment.