Skip to content

Commit 7a7b7a1

Browse files
committed
fix: remove redundant assert!(true) in test
1 parent 06b3416 commit 7a7b7a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/github_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ async fn test_cache_entry_variants() {
117117

118118
// Test pattern matching works for all variants
119119
match valid_entry {
120-
CacheEntry::Valid(_) => assert!(true),
120+
CacheEntry::Valid(_) => (), // No assertion needed for successful match
121121
_ => panic!("Expected Valid"),
122122
}
123123

0 commit comments

Comments
 (0)