Skip to content

Commit

Permalink
dartfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexer10 committed Apr 13, 2022
1 parent c900b72 commit 8026eea
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/search_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,14 @@ void main() {

test('Search only videos', () async {
var videos =
await yt!.search.searchContent('Banana', filter: TypeFilters.video);
await yt!.search.searchContent('Banana', filter: TypeFilters.video);
expect(videos, everyElement(isA<SearchVideo>()));
});

test('Search only channels', () async {
var channels = await yt!.search
.searchContent('PewDiePie', filter: TypeFilters.channel);
expect(channels, everyElement(isA<SearchChannel>()));

});

test('Search only playlists', () async {
Expand All @@ -49,8 +48,6 @@ void main() {
expect(playlists, everyElement(isA<SearchPlaylist>()));
});



test('Search test search filters', () async {
var featureSearch =
await yt!.search.searchContent('hello', filter: FeatureFilters.hd);
Expand Down

0 comments on commit 8026eea

Please sign in to comment.