mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 18:15:44 +00:00
Update FFMpegCore.Test/ArgumentBuilderTest.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
parent
1b0051b234
commit
77d13e8143
1 changed files with 3 additions and 3 deletions
|
|
@ -707,14 +707,14 @@ public class ArgumentBuilderTest
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestMethod]
|
[TestMethod]
|
||||||
public void InputPipe_MaxLength_ShorterThanMacOsMax()
|
public void InputPipe_MaxLength_ShorterThanMacOSMax()
|
||||||
{
|
{
|
||||||
var pipePath = new InputPipeArgument(new StreamPipeSource(Stream.Null)).PipePath;
|
var pipePath = new InputPipeArgument(new StreamPipeSource(Stream.Null)).PipePath;
|
||||||
Assert.IsLessThan(_macOsMaxPipePathLength, pipePath.Length);
|
Assert.IsLessThan(104, pipePath.Length);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestMethod]
|
[TestMethod]
|
||||||
public void OutputPipe_MaxLength_ShorterThanMacOsMax()
|
public void OutputPipe_MaxLength_ShorterThanMacOSMax()
|
||||||
{
|
{
|
||||||
var pipePath = new OutputPipeArgument(new StreamPipeSink(Stream.Null)).PipePath;
|
var pipePath = new OutputPipeArgument(new StreamPipeSink(Stream.Null)).PipePath;
|
||||||
Assert.IsLessThan(_macOsMaxPipePathLength, pipePath.Length);
|
Assert.IsLessThan(_macOsMaxPipePathLength, pipePath.Length);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue