summaryrefslogtreecommitdiffhomepage
path: root/TestProtocol.hs
diff options
context:
space:
mode:
authorGravatar Kazu Yamamoto <kazu@iij.ad.jp>2011-10-24 13:40:01 +0900
committerGravatar Kazu Yamamoto <kazu@iij.ad.jp>2011-10-24 13:40:01 +0900
commit6dc94202a991b716be72acdc5cee367b2e8ef081 (patch)
treef897381218636d611e76f8c936a0c1776903fcc3 /TestProtocol.hs
parent04c4afa6f7af8be5bd9ac0871ac42510350ac2f0 (diff)
hlint.
Diffstat (limited to 'TestProtocol.hs')
-rw-r--r--TestProtocol.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/TestProtocol.hs b/TestProtocol.hs
index cef00ee..ee839d9 100644
--- a/TestProtocol.hs
+++ b/TestProtocol.hs
@@ -7,7 +7,6 @@ import Network.DNS.Internal
import Network.DNS.Query
import Network.DNS.Response
import Data.IP
-import Control.Monad.State
import Test.Framework (defaultMain, testGroup, Test)
import Test.Framework.Providers.HUnit
import Test.HUnit hiding (Test)
@@ -17,7 +16,7 @@ tests =
[ testGroup "Test case"
[ testCase "QueryA" (test_Format testQueryA)
, testCase "QueryAAAA" (test_Format testQueryAAAA)
- , testCase "ResponseA" (test_Format $ testResponseA)
+ , testCase "ResponseA" (test_Format testResponseA)
]
]