This commit is contained in:
Mark Harrah 2011-06-01 02:22:51 -04:00
parent 3de6a0735f
commit 4d87f8c655
1 changed files with 2 additions and 2 deletions

View File

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