mirror of
https://github.com/Lidarr/Lidarr
synced 2026-05-07 03:52:42 +02:00
chore: Fix tests for combined type search
This commit is contained in:
parent
379ddb9eb7
commit
e71a563ec0
1 changed files with 2 additions and 2 deletions
|
|
@ -107,8 +107,8 @@ public void no_artist_search_result(string term)
|
|||
}
|
||||
|
||||
[TestCase("Eminem", 0, typeof(Artist), "Eminem")]
|
||||
[TestCase("Eminem Kamikaze", 0, typeof(Artist), "Eminem")]
|
||||
[TestCase("Eminem Kamikaze", 1, typeof(Album), "Kamikaze")]
|
||||
[TestCase("Eminem Kamikaze", 0, typeof(Album), "Kamikaze")]
|
||||
[TestCase("Eminem Kamikaze", 1, typeof(Artist), "Eminem")]
|
||||
[TestCase("lidarr:f59c5520-5f46-4d2c-b2c4-822eabf53419", 0, typeof(Artist), "Linkin Park")]
|
||||
[TestCase("lidarr: d77df681-b779-3d6d-b66a-3bfd15985e3e", 0, typeof(Album), "Pyromania")]
|
||||
public void successful_combined_search(string query, int position, Type resultType, string expected)
|
||||
|
|
|
|||
Loading…
Reference in a new issue