Skip to content

Commit 28a419c

Browse files
committed
Code cleanup
1 parent 3d39138 commit 28a419c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/AbstractFactoryTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public void HaveCorrectProcessor_WhenUsingFactory(ILaptopPartsFactory factory, s
2424
var processor = factory.CreateProcessor();
2525

2626
// Assert
27-
using (new FluentAssertions.Execution.AssertionScope("processor") )
27+
using (new FluentAssertions.Execution.AssertionScope("processor"))
2828
{
2929
processor.BrandName().Should().Be(name);
3030
processor.SpeedInGigaHertz().Should().Be(speed);
@@ -72,7 +72,7 @@ public void ImplementIStorage_WhenUsingFactory(ILaptopPartsFactory factory)
7272
var storage = factory.CreateStorage();
7373

7474
// Assert
75-
storage.GetType().Should().Implement<IStorage>();
75+
storage.GetType().Should().Implement<IStorage>();
7676
}
7777

7878
[Theory]
@@ -83,7 +83,7 @@ public void ImplementIProcessor_WhenUsingFactory(ILaptopPartsFactory factory)
8383
var processor = factory.CreateProcessor();
8484

8585
// Assert
86-
processor.GetType().Should().Implement<IProcessor>();
86+
processor.GetType().Should().Implement<IProcessor>();
8787
}
8888
}
8989
}

0 commit comments

Comments
 (0)