Skip to content

Commit 09957af

Browse files
committed
fixed broken test
1 parent 9ec9c7c commit 09957af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RetailCoder.VBE/Inspections/ImplicitActiveSheetReferenceInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public override IEnumerable<InspectionResultBase> GetInspectionResults()
3535
.SelectMany(declaration => declaration.References.Distinct());
3636

3737
return issues
38-
.Where(issue => !issue.IsInspectionDisabled(Name))
38+
.Where(issue => !issue.IsInspectionDisabled(AnnotationName))
3939
.Select(issue => new ImplicitActiveSheetReferenceInspectionResult(this, issue));
4040
}
4141
}

0 commit comments

Comments
 (0)