FreeAndNil commented on code in PR #200:
URL: https://github.com/apache/logging-log4net/pull/200#discussion_r1810482416
##########
src/log4net.Tests/Util/CyclicBufferTest.cs:
##########
@@ -33,49 +33,47 @@ namespace log4net.Tests.Util;
public class CyclicBufferTest
{
[Test]
- public void TestConstructorSize0()
- {
- Assert.Throws<ArgumentOutOfRangeException>(() => new CyclicBuffer(0));
- }
+ public void TestConstructorSize0()
+ => Assert.Throws<ArgumentOutOfRangeException>(() => new CyclicBuffer(0));
Review Comment:
Thanks for the hint. I've adjusted the tests.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]