Skip to content

Commit fe93b92

Browse files
committed
Fixed tests to match the returned output from the Dart Analysis Server.
1 parent 54b8a44 commit fe93b92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

third_party/src/test/java/com/jetbrains/dart/analysisServer/DartServerDocUtilTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ public void testMixinSig2() {
338338
}
339339

340340
public void testNamedConstructorSig() {
341-
doTest("<code><b>test.dart</b><br>Z&nbsp;Z.z()<br><br><b>Containing class:</b> Z<br><br></code>", "class Z { <caret>Z.z(); }");
341+
doTest("<code><b>test.dart</b><br>Z.z()<br><br><b>Containing class:</b> Z<br><br></code>", "class Z { <caret>Z.z(); }");
342342
}
343343

344344
public void testParamClassSig() {
@@ -403,7 +403,7 @@ public void testTopLevelVarDoc2() {
403403
}
404404

405405
public void testTypedefSig() {
406-
doTest("<code><b>test.dart</b><br>typedef&nbsp;F&nbsp;=&nbsp;int&nbsp;Function(int&nbsp;x)<br><br></code>",
406+
doTest("<code><b>test.dart</b><br>typedef&nbsp;F&nbsp;=&nbsp;int&nbsp;Function(int)<br><br></code>",
407407
"typedef int <caret>F(int x);");
408408
}
409409

0 commit comments

Comments
 (0)