From fe4b79e24cf5beab567c0f7c3ada292ba8edd79d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Hagfj=C3=A4ll?= Date: Sat, 30 Mar 2024 09:31:03 +0100 Subject: [PATCH] fix linting --- FFMpegCore.Test/VideoTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FFMpegCore.Test/VideoTest.cs b/FFMpegCore.Test/VideoTest.cs index 4d516c9..8da9c19 100644 --- a/FFMpegCore.Test/VideoTest.cs +++ b/FFMpegCore.Test/VideoTest.cs @@ -490,7 +490,7 @@ public void Video_Snapshot_Rotated_PersistSnapshot() var analysis = FFProbe.Analyse(outputPath); Assert.AreEqual(size.Width, analysis.PrimaryVideoStream!.Width); - Assert.AreEqual(1280/2, analysis.PrimaryVideoStream!.Height); + Assert.AreEqual(1280 / 2, analysis.PrimaryVideoStream!.Height); Assert.AreEqual(0, analysis.PrimaryVideoStream!.Rotation); Assert.AreEqual("png", analysis.PrimaryVideoStream!.CodecName); }