Formating

This commit is contained in:
rlauu 2024-10-09 19:03:17 +02:00
parent 3c02426532
commit fbe88e488d
5 changed files with 8 additions and 7 deletions

View File

@ -4,10 +4,10 @@
using System;
using System.Collections.Generic;
using Xunit;
using Microsoft.Extensions.Logging;
using ConfusedPolarBear.Plugin.IntroSkipper.Analyzers;
using ConfusedPolarBear.Plugin.IntroSkipper.Data;
using Microsoft.Extensions.Logging;
using Xunit;
namespace ConfusedPolarBear.Plugin.IntroSkipper.Tests;

View File

@ -24,7 +24,8 @@ public class TestEdl
[Fact]
public void TestEdlInvalidSerialization()
{
Assert.Throws<ArgumentException>(() => {
Assert.Throws<ArgumentException>(() =>
{
var intro = MakeIntro(0, 5);
intro.ToEdl(EdlAction.None);
});

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
namespace ConfusedPolarBear.Plugin.IntroSkipper.Data;