Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianMindee committed Oct 10, 2024
1 parent 68da5da commit 5edc688
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Mindee.UnitTests/Input/LocalInputSourceTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,9 @@ public void Image_Resize_From_Compressor()
}

[Fact]
public void Pdf_Resize_From_InputSource()
public void Pdf_Compress_From_InputSource()
{
var pdfResizeInput = new LocalInputSource("Resources/products/invoice_splitter/default_sample.pdf");
var pdfResizeInput = new LocalInputSource("Resources/products/invoice_splitter/default_sample.pdf");
pdfResizeInput.Compress(75);
File.WriteAllBytes("Resources/output/resize_indirect.pdf", pdfResizeInput.FileBytes);
var initialFileInfo = new FileInfo("Resources/products/invoice_splitter/default_sample.pdf");
Expand All @@ -179,7 +179,7 @@ public void Pdf_Resize_From_InputSource()
}

[Fact]
public void Pdf_Resize_From_Compressor()
public void Pdf_Compress_From_Compressor()
{
var pdfResizeInput = new LocalInputSource("Resources/products/invoice_splitter/default_sample.pdf");
var resizes = new List<byte[]>
Expand Down

0 comments on commit 5edc688

Please sign in to comment.