Skip to content

Commit

Permalink
Make alpha normalization tests not resolve imports
Browse files Browse the repository at this point in the history
  • Loading branch information
TimWSpence committed Apr 15, 2020
1 parent edc38ee commit 4d38196
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ abstract class ExprOperationAcceptanceSuite(transformation: Expr => Expr) extend

class CachingTypeCheckingSuite(val base: String) extends ExprOperationAcceptanceSuite(Expr.Util.typeCheck(_)) with CachedResolvingInput
class TypeCheckingSuite(val base: String) extends ExprOperationAcceptanceSuite(Expr.Util.typeCheck(_)) with ResolvingInput
class AlphaNormalizationSuite(val base: String) extends ExprOperationAcceptanceSuite(_.alphaNormalize) with CachedResolvingInput
class AlphaNormalizationSuite(val base: String) extends ExprOperationAcceptanceSuite(_.alphaNormalize) with ParsingInput
class NormalizationSuite(val base: String) extends ExprOperationAcceptanceSuite(_.normalize) with CachedResolvingInput

class HashingSuite(val base: String) extends ResolvingExprAcceptanceSuite[String] {
Expand Down

0 comments on commit 4d38196

Please sign in to comment.