Indetation formatting and unnecessary usings cleanup
This commit is contained in:
@@ -4,16 +4,16 @@ using YouTube.Models;
|
||||
|
||||
namespace YouTube.API.Test
|
||||
{
|
||||
public class ClosedCaptionsTest
|
||||
{
|
||||
[Test]
|
||||
public void ValidCaptionsTest()
|
||||
{
|
||||
ExtendedYouTubeService service = new ExtendedYouTubeService();
|
||||
ClosedCaptionInfo info = service.VideoPlayback.List("VC5-YkjMHuw").Execute().ClosedCaptions.FirstOrDefault();
|
||||
ClosedCaptionTrack track = service.Captions.Load(info).Execute();
|
||||
Assert.IsNotNull(track);
|
||||
Assert.IsNotEmpty(track.Captions);
|
||||
}
|
||||
}
|
||||
}
|
||||
public class ClosedCaptionsTest
|
||||
{
|
||||
[Test]
|
||||
public void ValidCaptionsTest()
|
||||
{
|
||||
ExtendedYouTubeService service = new ExtendedYouTubeService();
|
||||
ClosedCaptionInfo info = service.VideoPlayback.List("VC5-YkjMHuw").Execute().ClosedCaptions.FirstOrDefault();
|
||||
ClosedCaptionTrack track = service.Captions.Load(info).Execute();
|
||||
Assert.IsNotNull(track);
|
||||
Assert.IsNotEmpty(track.Captions);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user