Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 64010bf

Browse files
committed
Fix the test that failed the build
1 parent 870467c commit 64010bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec/python-spec.coffee

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,6 @@ describe "Python grammar", ->
754754
it "recognizes DELETE as an HTTP method", ->
755755
{tokens} = grammar.tokenizeLine('"DELETE /api/v1/endpoint"')
756756

757-
expect(tokens[0]).toEqual value: '"', scopes: ['source.python', 'string.quoted.single.single-line.python', 'punctuation.definition.string.begin.python']
758-
expect(tokens[1]).toEqual value: 'DELETE /api/v1/endpoint', scopes: ['source.python', 'string.quoted.single.single-line.python']
759-
expect(tokens[2]).toEqual value: '"', scopes: ['source.python', 'string.quoted.single.single-line.python', 'punctuation.definition.string.end.python']
757+
expect(tokens[0]).toEqual value: '"', scopes: ['source.python', 'string.quoted.double.single-line.python', 'punctuation.definition.string.begin.python']
758+
expect(tokens[1]).toEqual value: 'DELETE /api/v1/endpoint', scopes: ['source.python', 'string.quoted.double.single-line.python']
759+
expect(tokens[2]).toEqual value: '"', scopes: ['source.python', 'string.quoted.double.single-line.python', 'punctuation.definition.string.end.python']

0 commit comments

Comments
 (0)