From a11dd74d8acc5b3e51bb90b3abbce7db3d02c5ae Mon Sep 17 00:00:00 2001 From: Bem Jones-Bey Date: Tue, 6 May 2014 14:50:51 -0700 Subject: [PATCH] Fix CSSCodeHints unit tests after my previous change --- src/extensions/default/CSSCodeHints/unittests.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/extensions/default/CSSCodeHints/unittests.js b/src/extensions/default/CSSCodeHints/unittests.js index 4b21fca7d33..2a957e97094 100644 --- a/src/extensions/default/CSSCodeHints/unittests.js +++ b/src/extensions/default/CSSCodeHints/unittests.js @@ -522,11 +522,11 @@ define(function (require, exports, module) { verifyAllValues(hintList, ["auto", "circle()", "ellipse()", "inherit", "outside-shape", "polygon()", "rectangle()"]); }); - it("should list 6 value-name hints for shape-outside", function () { + it("should list 16 value-name hints for shape-outside", function () { testEditor.setCursorPos({ line: 2, ch: 16 }); // after shape-outside var hintList = expectHints(CSSCodeHints.cssPropHintProvider); - verifyAttrHints(hintList, "auto"); // first hint should be auto - verifyAllValues(hintList, ["auto", "rectangle()", "circle()", "ellipse()", "polygon()", "inherit"]); + verifyAttrHints(hintList, "border-box"); // first hint should be border-box + verifyAllValues(hintList, ["none", "inherit", "circle()", "ellipse()", "polygon()", "inset()", "margin-box", "border-box", "padding-box", "content-box", "url()", "image()", "linear-gradient()", "radial-gradient()", "repeating-linear-gradient()", "repeating-radial-gradient()"]); }); it("should list 2 value-name hints for region-fragment", function () {