From f899867f583f200af1b0a457e481e3a72d47efb8 Mon Sep 17 00:00:00 2001 From: Alecio Furanze Date: Mon, 4 Sep 2023 22:47:38 +0200 Subject: [PATCH] Update WriterTest.cs --- test/WriterTest.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/WriterTest.cs b/test/WriterTest.cs index c2b4ed1..238e1c2 100644 --- a/test/WriterTest.cs +++ b/test/WriterTest.cs @@ -6,7 +6,6 @@ using Xunit; using Byter; using Byter.Core; -using System.Numerics; namespace ByterTest; @@ -36,7 +35,7 @@ public void Write() w.Write((char) 'A'); w.Write((string) "UTF8"); w.Write((string) "ASCII", Encoding.ASCII); - w.Write(new Vector2(1, 2)); + w.Write(new Float2(1, 2)); byte[] a = w.GetBytes(); List b = w.GetList(); @@ -44,4 +43,4 @@ public void Write() Assert.Equal(a.Length, w.Length); Assert.Equal(b.Count, w.Length); } -} \ No newline at end of file +}