mirror of https://github.com/sbt/sbt.git
Fix DependencySpecification test.
This is a fixup of 0f616294c4.
That commit assumed that dealiasing is being done for types referred in
self type. It was changed to not do that but the test wasn't updated.
Unfortunately, that mistake slipped by during PR review because unit tests
of compileInterface were not ran (see #2358).
This commit is contained in:
parent
e738bc3f73
commit
dd0ed7de5e
|
|
@ -26,7 +26,7 @@ class DependencySpecification extends Specification {
|
|||
inheritance('D) === Set.empty
|
||||
memberRef('E) === Set.empty
|
||||
inheritance('E) === Set.empty
|
||||
memberRef('F) === Set('A, 'B, 'C, 'D, 'E, 'G)
|
||||
memberRef('F) === Set('A, 'B, 'D, 'E, 'G)
|
||||
inheritance('F) === Set('A, 'E)
|
||||
memberRef('H) === Set('B, 'E, 'G)
|
||||
// aliases and applied type constructors are expanded so we have inheritance dependency on B
|
||||
|
|
|
|||
Loading…
Reference in New Issue