about summary refs log tree commit diff
path: root/IrcTokens/Tests/Hostmask.cs
diff options
context:
space:
mode:
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);