From bfd79c062dbdbd98e9a268023344dd0703c9f844 Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Mon, 25 Jun 2018 11:55:54 -0400 Subject: [PATCH] =?UTF-8?q?:fire:=20the=20=E2=80=9Cevaluates=E2=80=9D=20pr?= =?UTF-8?q?efix.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/Analysis/Go/Spec.hs | 2 +- test/Analysis/TypeScript/Spec.hs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Analysis/Go/Spec.hs b/test/Analysis/Go/Spec.hs index 62e4b77a6..1200e76a9 100644 --- a/test/Analysis/Go/Spec.hs +++ b/test/Analysis/Go/Spec.hs @@ -9,7 +9,7 @@ import SpecHelpers spec :: Spec spec = parallel $ do - describe "evaluates Go" $ do + describe "Go" $ do it "imports and wildcard imports" $ do ((Right [(_, env)], heap), _) <- evaluate ["main.go"] Env.names env `shouldBe` [ "Bar", "Rab", "foo", "main" ] diff --git a/test/Analysis/TypeScript/Spec.hs b/test/Analysis/TypeScript/Spec.hs index 87a847080..9da64cdd6 100644 --- a/test/Analysis/TypeScript/Spec.hs +++ b/test/Analysis/TypeScript/Spec.hs @@ -13,7 +13,7 @@ import SpecHelpers spec :: Spec spec = parallel $ do - describe "evaluates TypeScript" $ do + describe "TypeScript" $ do it "imports with aliased symbols" $ do ((res, _), _) <- evaluate ["main.ts", "foo.ts", "a.ts", "foo/b.ts"] (>>= Env.names . snd) <$> res `shouldBe` Right [ "bar", "quz" ]