@@ -5,7 +5,7 @@ import qualified Data.Text as Text
55import Prelude hiding (FilePath )
66import qualified System.IO.Temp as Temp
77import Test.Hspec (Spec , around_ , describe , it , shouldBe , shouldNotSatisfy ,
8- shouldReturn , shouldSatisfy )
8+ shouldNotBe , shouldReturn , shouldSatisfy )
99import Turtle (ExitCode (.. ), cd , cp , decodeString , empty , encodeString ,
1010 mkdir , mktree , mv , pwd , readTextFile , rm , shell ,
1111 shellStrictWithErr , testdir , writeTextFile , (</>) )
@@ -607,9 +607,6 @@ spec = around_ setup $ do
607607 newPackages <- Text. strip <$> readTextFile " packages.dhall"
608608 newPackages `shouldBe` packageSetUrl
609609
610- {-
611- -- Note: this is commented because of https://github.com/purescript/spago/issues/685#issuecomment-694342262
612-
613610 it " Spago should migrate a package set from an alternative repository from src/packages.dhall" $ do
614611
615612 spago [" init" ] >>= shouldBeSuccess
@@ -618,7 +615,6 @@ spec = around_ setup $ do
618615 newPackages <- Text. strip <$> readTextFile " packages.dhall"
619616 newPackages `shouldNotBe` " https://github.com/purerl/package-sets/releases/download/erl-0.13.6-20200713/packages.dhall"
620617 newPackages `shouldSatisfy` Text. isPrefixOf " https://github.com/purerl/package-sets/releases/download"
621- -}
622618
623619 it " Spago should migrate package-set from src/packages.dhall to the user-specified one if it exists" $ do
624620 -- initialize the project, so that it uses latest package set release
0 commit comments