fixes capitalization issue; modifies existing test to check for it (#841)

This commit is contained in:
Wyatt Verchere
2024-01-09 12:42:17 -08:00
committed by GitHub
parent d51d6517be
commit 3464fbb2e8
4 changed files with 8 additions and 7 deletions

View File

@@ -391,6 +391,7 @@ async fn search_projects() {
.await;
for hit in game_versions.hits {
assert_eq!(hit.versions, vec!["1.20.5".to_string()]);
assert_eq!(hit.author, "User".to_string());
}
})
.await;