mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-13 12:37:13 +00:00
Tidying
This commit is contained in:
parent
4f901db30e
commit
74ed7b4165
8 changed files with 27 additions and 28 deletions
|
|
@ -51,7 +51,7 @@ namespace ICD.Common.Utils.Tests.Extensions
|
|||
{
|
||||
using (JsonWriter writer = new JsonTextWriter(stringWriter))
|
||||
{
|
||||
serializer.SerializeArray(writer, new int[] {1, 2, 3, 4});
|
||||
serializer.SerializeArray(writer, new[] {1, 2, 3, 4});
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -76,7 +76,7 @@ namespace ICD.Common.Utils.Tests.Extensions
|
|||
}
|
||||
}
|
||||
|
||||
Assert.IsTrue(deserialized.SequenceEqual(new int[] {1, 2, 3, 4}));
|
||||
Assert.IsTrue(deserialized.SequenceEqual(new[] {1, 2, 3, 4}));
|
||||
}
|
||||
|
||||
[Test]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue