Browse Source

content rating shouldn't ever be a phrase (#1653)

pull/1656/head
Jason Dove 1 year ago committed by GitHub
parent
commit
39df3504fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      ErsatzTV.Infrastructure.Tests/Search/SearchQueryParserTests.cs

1
ErsatzTV.Infrastructure.Tests/Search/SearchQueryParserTests.cs

@ -14,7 +14,6 @@ public class SearchQueryParserTests @@ -14,7 +14,6 @@ public class SearchQueryParserTests
[TestCase("tag:\"Will Smith\"", "tag:\"will smith\"")]
[TestCase("library_id:4", "library_id:4")]
[TestCase("content_rating:\"TV-14\"", "content_rating:TV-14")]
[TestCase("content_rating:\"test PHRASE\"", "content_rating:\"test PHRASE\"")]
public void Test(string input, string expected)
{
Query result = SearchQueryParser.ParseQuery(input);

Loading…
Cancel
Save