We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65e4f90 commit 6444903Copy full SHA for 6444903
plugins/hls-ormolu-plugin/hls-ormolu-plugin.cabal
@@ -57,4 +57,5 @@ test-suite tests
57
, hls-ormolu-plugin
58
, hls-test-utils == 2.1.0.0
59
, lsp-types
60
+ , text
61
, ormolu
plugins/hls-ormolu-plugin/test/Main.hs
@@ -4,6 +4,7 @@ module Main
4
( main
5
) where
6
7
+import qualified Data.Text as T
8
import qualified Ide.Plugin.Ormolu as Ormolu
9
import Language.LSP.Protocol.Types
10
import System.FilePath
@@ -12,8 +13,8 @@ import Test.Hls
12
13
main :: IO ()
14
main = defaultTestRunner tests
15
-ormoluPlugin :: PluginTestDescriptor ()
16
-ormoluPlugin = mkPluginTestDescriptor' Ormolu.descriptor "ormolu"
+ormoluPlugin :: PluginTestDescriptor T.Text
17
+ormoluPlugin = mkPluginTestDescriptor Ormolu.descriptor "ormolu"
18
19
tests :: TestTree
20
tests = testGroup "ormolu"
0 commit comments