From e8aebb00ee6ecca31abf32782ea1b5b2521ea19b Mon Sep 17 00:00:00 2001 From: Tyler Long Date: Mon, 17 Dec 2018 14:42:52 +0800 Subject: [PATCH] Fix typos in test cases --- src/diagrams/flowchart/parser/flow.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/diagrams/flowchart/parser/flow.spec.js b/src/diagrams/flowchart/parser/flow.spec.js index 28d273baf..ddbcec088 100644 --- a/src/diagrams/flowchart/parser/flow.spec.js +++ b/src/diagrams/flowchart/parser/flow.spec.js @@ -33,7 +33,7 @@ describe('when parsing ', function () { expect(subgraph.title).toBe('One') }) - it('should handle angle bracket ' > ' as direction LR', function () { + it("should handle angle bracket ' > ' as direction LR", function () { const res = flow.parser.parse('graph >;A-->B;') const vert = flow.parser.yy.getVertices() @@ -51,7 +51,7 @@ describe('when parsing ', function () { expect(edges[0].text).toBe('') }) - it('should handle angle bracket ' < ' as direction RL', function () { + it("should handle angle bracket ' < ' as direction RL", function () { const res = flow.parser.parse('graph <;A-->B;') const vert = flow.parser.yy.getVertices() @@ -69,7 +69,7 @@ describe('when parsing ', function () { expect(edges[0].text).toBe('') }) - it('should handle caret ' ^ ' as direction BT', function () { + it("should handle caret ' ^ ' as direction BT", function () { const res = flow.parser.parse('graph ^;A-->B;') const vert = flow.parser.yy.getVertices()