about summary refs log tree commit diff
path: root/IrcTokens/Tests/Hostmask.cs
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2020-04-28 00:35:52 -0400
committerBen Harris <ben@tilde.team>2020-04-28 00:35:52 -0400
commit80afa2c0aec37b7f98cc22615417c36672e695da (patch)
tree63ca3e309a5daa5093e54bdfdb493115c7a3d942 /IrcTokens/Tests/Hostmask.cs
parent933a4f85604e21445c9bac8272d64cf3e6f65e00 (diff)
tidy up, work on stateful
Diffstat (limited to 'IrcTokens/Tests/Hostmask.cs')
-rw-r--r--IrcTokens/Tests/Hostmask.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/IrcTokens/Tests/Hostmask.cs b/IrcTokens/Tests/Hostmask.cs
index 51bc182..6a5cf65 100644
--- a/IrcTokens/Tests/Hostmask.cs
+++ b/IrcTokens/Tests/Hostmask.cs
@@ -44,7 +44,7 @@ namespace IrcTokens.Tests
         [TestMethod]
         public void TestHostmaskFromLine()
         {
-            var line = new Line(":nick!user@host PRIVMSG #channel hello");
+            var line     = new Line(":nick!user@host PRIVMSG #channel hello");
             var hostmask = new IrcTokens.Hostmask("nick!user@host");
             Assert.AreEqual(hostmask.ToString(), line.Hostmask.ToString());
             Assert.AreEqual("nick", line.Hostmask.NickName);