Skip to content

Commit

Permalink
Remove redundant array creation
Browse files Browse the repository at this point in the history
References #23
  • Loading branch information
andreashuber-lawo committed May 4, 2016
1 parent fadc2a2 commit 755cc1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lawo.EmberPlusSharpTest/Ember/EmberConverterTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void ExceptionTest()
() => new EmberTypeBag(null).ToString(),
() => new EmberConverter(null).ToString());

AssertThrow<ArgumentException>(() => new EmberType(new Type[0]).ToString());
AssertThrow<ArgumentException>(() => new EmberType().ToString());

using (var stream = new MemoryStream())
using (var reader = new EmberReader(stream))
Expand Down

0 comments on commit 755cc1f

Please sign in to comment.