Remove unneeded cast in lyricist tests (#43017)

This commit is contained in:
Nathan Shively-Sanders 2020-03-09 08:53:55 -07:00 committed by GitHub
parent 3692d1c231
commit 22fe6436a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ Promise
const artistByName: Artist = results[2];
const searchResult: SearchResult[] = results[3];
const song: Song = results[4];
const songsByArtist: SongByArtist[] = results[5] as SongByArtist[];
const songsByArtist: SongByArtist[] = results[5];
console.log('album', album.name);
console.log('artist', artist.name);