From 3be2a0fed8cbb4c223b5de13ef3ed1593859823e Mon Sep 17 00:00:00 2001 From: DLakomy Date: Mon, 14 Aug 2023 11:44:25 +0200 Subject: [PATCH] Fix a typo in tags explanation --- docs/filtering.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/filtering.md b/docs/filtering.md index 4eb15924..375dfaf6 100644 --- a/docs/filtering.md +++ b/docs/filtering.md @@ -166,7 +166,7 @@ and `myproject/all:test` that run only slow tests and all tests, respectively. // build.sbt val MUnitFramework = new TestFramework("munit.Framework") + val Slow = config("slow").extend(Test) -+ val All = config("slow").extend(Test) ++ val All = config("all").extend(Test) lazy val myproject = project + .configs(Slow, All) .settings(