You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert.notEqual(actualQuickInfoMemberName,expectedTypeName,this.assertionMessage("quick info member name",actualQuickInfoMemberName,expectedTypeName));
785
+
assert.notEqual(actualQuickInfoMemberName,expectedTypeName,this.messageAtLastKnownMarker("quick info member name"));
782
786
}
783
787
if(docComment!=undefined){
784
-
assert.notEqual(actualQuickInfoDocComment,docComment,this.assertionMessage("quick info doc comment",actualQuickInfoDocComment,docComment));
788
+
assert.notEqual(actualQuickInfoDocComment,docComment,this.messageAtLastKnownMarker("quick info doc comment"));
785
789
}
786
790
if(symbolName!==undefined){
787
-
assert.notEqual(actualQuickInfoSymbolName,symbolName,this.assertionMessage("quick info symbol name",actualQuickInfoSymbolName,symbolName));
791
+
assert.notEqual(actualQuickInfoSymbolName,symbolName,this.messageAtLastKnownMarker("quick info symbol name"));
788
792
}
789
793
if(kind!==undefined){
790
-
assert.notEqual(actualQuickInfoKind,kind,this.assertionMessage("quick info kind",actualQuickInfoKind,kind));
794
+
assert.notEqual(actualQuickInfoKind,kind,this.messageAtLastKnownMarker("quick info kind"));
791
795
}
792
796
}else{
793
797
if(expectedTypeName!==undefined){
794
-
assert.equal(actualQuickInfoMemberName,expectedTypeName,this.assertionMessage("quick info member",actualQuickInfoMemberName,expectedTypeName));
798
+
assert.equal(actualQuickInfoMemberName,expectedTypeName,this.messageAtLastKnownMarker("quick info member"));
795
799
}
796
800
if(docComment!=undefined){
797
-
assert.equal(actualQuickInfoDocComment,docComment,this.assertionMessage("quick info doc",actualQuickInfoDocComment,docComment));
801
+
assert.equal(actualQuickInfoDocComment,docComment,this.messageAtLastKnownMarker("quick info doc"));
798
802
}
799
803
if(symbolName!==undefined){
800
-
assert.equal(actualQuickInfoSymbolName,symbolName,this.assertionMessage("quick info symbol name",actualQuickInfoSymbolName,symbolName));
804
+
assert.equal(actualQuickInfoSymbolName,symbolName,this.messageAtLastKnownMarker("quick info symbol name"));
801
805
}
802
806
if(kind!==undefined){
803
-
assert.equal(actualQuickInfoKind,kind,this.assertionMessage("quick info kind",actualQuickInfoKind,kind));
807
+
assert.equal(actualQuickInfoKind,kind,this.messageAtLastKnownMarker("quick info kind"));
0 commit comments