Skip to content

Commit

Permalink
Updated test for #347 to skip modules we know have packages which dep…
Browse files Browse the repository at this point in the history
…end on optional imports

This one depends on javax.servlet
  • Loading branch information
FroMage committed May 15, 2014
1 parent a6b4051 commit ed964d6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/metamodel/bug347.ceylon
Expand Up @@ -8,6 +8,9 @@ shared final annotation class TestAnnotation()
@test
shared void bug347() {
for (value m in modules.list) {
if(m.name.startsWith("org.apache")){
continue;
}
for (value member in m.members) {
value components = member.annotatedMembers<ClassDeclaration, TestAnnotation>();
assert(components == []);
Expand Down

0 comments on commit ed964d6

Please sign in to comment.