From dd0ed7de5e341078ad796add7b753e031bfcb947 Mon Sep 17 00:00:00 2001 From: Grzegorz Kossakowski Date: Sat, 9 Jan 2016 00:00:14 +0100 Subject: [PATCH] Fix DependencySpecification test. This is a fixup of 0f616294c4e713dc415f5dc3ae7aef257decb228. 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). --- .../interface/src/test/scala/xsbt/DependencySpecification.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile/interface/src/test/scala/xsbt/DependencySpecification.scala b/compile/interface/src/test/scala/xsbt/DependencySpecification.scala index db6719319..0c4760ddc 100644 --- a/compile/interface/src/test/scala/xsbt/DependencySpecification.scala +++ b/compile/interface/src/test/scala/xsbt/DependencySpecification.scala @@ -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