Skip to content
Snippets Groups Projects
Commit 94d5979b authored by ncaq's avatar ncaq Committed by Ryan Scott
Browse files

test: `cabal test -w ghc-9.4 --constraint="mtl == 2.3.1"`

The test with the following command did not pass because the decision to import the mtl module was made by referring to the transformers version.

~~~console
cabal test -w ghc-9.4 --constraint="mtl == 2.3.1"
~~~

There were two avenues to resolve this.
One is by making it refer to the mtl version,
The other is to change the transformers module to import.

It seems more natural to reference the mtl version, but since `mtl-2.3.1` still supports `transformers-0.5.6.2` which still provides `ErrorT` and so on, we can use `cabal test -w ghc-9.6 --constraint=" transformers=0.5.6.2" --constraint="mtl==2.3.1"`, the API will change when assuming `mtl-2.3.1`.
Therefore, we decided to change to import the transformers module.
parent b1cbf778
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment