Skip to content

Commit

Permalink
Fix Should_Paginate_Transcripts test
Browse files Browse the repository at this point in the history
  • Loading branch information
Swimburger committed Jul 24, 2024
1 parent 3fb50a6 commit ce9369e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/AssemblyAI.Test/TranscriptsClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ public async Task Should_Paginate_Transcripts()
Assert.That(transcriptPage.Transcripts, Is.Not.Empty);

var prevPage = await client.Transcripts.ListAsync(transcriptPage.PageDetails.PrevUrl);
Assert.That(transcriptPage, Is.Not.Null);
Assert.That(transcriptPage.PageDetails.NextUrl, Is.Not.Null);
Assert.That(transcriptPage.Transcripts, Is.Not.Empty);
Assert.That(prevPage, Is.Not.Null);
Assert.That(prevPage.PageDetails.NextUrl, Is.Not.Null);
Assert.That(prevPage.Transcripts, Is.Not.Empty);
}
}

0 comments on commit ce9369e

Please sign in to comment.