Skip to content

Commit

Permalink
Restore test_ prefix for test functions for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
jdh8 committed May 12, 2024
1 parent dac8f7b commit e712aa2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ where
}

#[test]
fn equality() {
fn test_equality() {
for_each_type!(test_equality_f8, test_equality_f16);
}

Expand Down Expand Up @@ -193,7 +193,7 @@ where
}

#[test]
fn comparison() {
fn test_comparison() {
for_each_type!(test_comparison_f8, test_comparison_f16);
}

Expand All @@ -218,7 +218,7 @@ where
}

#[test]
fn neg() {
fn test_neg() {
for_each_type!(test_neg_f8, test_neg_f16);
}

Expand Down Expand Up @@ -251,6 +251,6 @@ where
}

#[test]
fn identity_conversion() {
fn test_identity_conversion() {
for_each_type!(test_identity_conversion_f8, test_identity_conversion_f16);
}

0 comments on commit e712aa2

Please sign in to comment.