Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit f6746f6

Browse files
committed
- changed comment
1 parent 0c6ce36 commit f6746f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/extensions/default/CSSCodeHints/unittests.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -518,14 +518,14 @@ define(function (require, exports, module) {
518518
});
519519

520520
it("should list 2 value-name hints for flow-from", function () {
521-
testEditor.setCursorPos({ line: 9, ch: 12 }); // after shape-inside
521+
testEditor.setCursorPos({ line: 9, ch: 12 }); // after flow-from
522522
var hintList = expectHints(CSSCodeHints.cssPropHintProvider);
523523
verifyAttrHints(hintList, "inherit"); // first hint should be inherit
524524
verifyAllValues(hintList, ["inherit", "none"]);
525525
});
526526

527527
it("should list 1 value-name hint for flow-into", function () {
528-
testEditor.setCursorPos({ line: 10, ch: 12 }); // after shape-inside
528+
testEditor.setCursorPos({ line: 10, ch: 12 }); // after flow-into
529529
var hintList = expectHints(CSSCodeHints.cssPropHintProvider);
530530
verifyAttrHints(hintList, "none"); // first hint should be none
531531
verifyAllValues(hintList, ["none"]);

0 commit comments

Comments
 (0)