Skip to content

Commit de8d98e

Browse files
committed
cleanup
1 parent 28684d6 commit de8d98e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/Elastic.Markdown.Tests/Directives/ImageCarouselTests.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ namespace Elastic.Markdown.Tests.Directives;
1313
public class ImageCarouselBlockTests(ITestOutputHelper output) : DirectiveTest<ImageCarouselBlock>(output,
1414
"""
1515
:::{carousel}
16-
:id: my-carousel
1716
:fixed-height: medium
1817
1918
```{image} img/image1.png
@@ -39,7 +38,6 @@ protected override void AddToFileSystem(MockFileSystem fileSystem)
3938
[Fact]
4039
public void ParsesCarouselProperties()
4140
{
42-
Block!.Id.Should().Be("my-carousel");
4341
Block!.FixedHeight.Should().Be("medium");
4442
}
4543

@@ -139,7 +137,6 @@ public void WarnsOnInvalidFixedHeight()
139137
public class ImageCarouselWithoutImagesTests(ITestOutputHelper output) : DirectiveTest<ImageCarouselBlock>(output,
140138
"""
141139
:::{carousel}
142-
:id: empty-carousel
143140
:::
144141
"""
145142
)
@@ -174,7 +171,6 @@ protected override void AddToFileSystem(MockFileSystem fileSystem) =>
174171
[Fact]
175172
public void ParsesMinimalCarousel()
176173
{
177-
Block!.Id.Should().BeNull();
178174
Block!.FixedHeight.Should().BeNull();
179175
Block!.Images.Should().HaveCount(1);
180176
Block!.Images[0].Alt.Should().Be("Minimal carousel");

0 commit comments

Comments
 (0)