Fix some test module names

This commit is contained in:
Richard Feldman 2021-05-23 23:41:09 -04:00
parent 6c4ba49086
commit e3267dbf61
2 changed files with 2 additions and 1 deletions

View file

@ -12,7 +12,7 @@ extern crate roc_gen;
mod helpers; mod helpers;
#[cfg(test)] #[cfg(test)]
mod gen_num { mod gen_compare {
#[test] #[test]
fn eq_i64() { fn eq_i64() {

View file

@ -4,6 +4,7 @@
// we actually want to compare against the literal float bits // we actually want to compare against the literal float bits
#![allow(clippy::clippy::float_cmp)] #![allow(clippy::clippy::float_cmp)]
pub mod gen_compare;
pub mod gen_dict; pub mod gen_dict;
pub mod gen_hash; pub mod gen_hash;
pub mod gen_list; pub mod gen_list;