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 } } }