From 2fc78b4033637815c526255433a20e015e1818f5 Mon Sep 17 00:00:00 2001 From: Adrien Piquerez Date: Fri, 11 Oct 2024 11:14:37 +0200 Subject: [PATCH] Fix ConfigMacroTest --- .../test/scala/sbt/librarymanagement/ConfigMacroTest.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lm-core/src/test/scala/sbt/librarymanagement/ConfigMacroTest.scala b/lm-core/src/test/scala/sbt/librarymanagement/ConfigMacroTest.scala index 8c99536ab..27103395a 100644 --- a/lm-core/src/test/scala/sbt/librarymanagement/ConfigMacroTest.scala +++ b/lm-core/src/test/scala/sbt/librarymanagement/ConfigMacroTest.scala @@ -6,8 +6,8 @@ import org.scalatest.matchers.should.Matchers class ConfigMacroTest extends AnyFunSpec with Matchers { describe("Configurations.config") { it("should validate the ID in compile time") { - """val A = config("a")""" should compile - """val b = config("b")""" shouldNot compile + """val A = Configurations.config("a")""" should compile + """val b = Configurations.config("b")""" shouldNot compile } } }