diff --git a/sbt/src/sbt-test/source-dependencies/inherited_type_params/build.sbt b/sbt/src/sbt-test/source-dependencies/inherited_type_params/build.sbt index 142bf03f6..1182796da 100644 --- a/sbt/src/sbt-test/source-dependencies/inherited_type_params/build.sbt +++ b/sbt/src/sbt-test/source-dependencies/inherited_type_params/build.sbt @@ -2,7 +2,7 @@ name :== "test" TaskKey[Unit]("check-same") <<= compile in Configurations.Compile map { analysis => analysis.apis.internal foreach { case (_, api) => - assert( xsbt.api.APIUtil.verifyTypeParameters(api) ) - assert( xsbt.api.SameAPI(api, api) ) + assert( xsbt.api.APIUtil.verifyTypeParameters(api.api) ) + assert( xsbt.api.SameAPI(api.api, api.api) ) } } \ No newline at end of file