Skip to content

Commit 8c59794

Browse files
authored
Remove implicit returns from decaffeinating
1 parent 9df735b commit 8c59794

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec/grammar-spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ describe("Language C# package", () => {
77
it("parses the grammar", () => {
88
const grammar = atom.grammars.grammarForScopeName("source.csx")
99
expect(grammar).toBeDefined()
10-
return expect(grammar.scopeName).toBe("source.csx")
10+
expect(grammar.scopeName).toBe("source.csx")
1111
})
1212
)
1313

14-
return describe("C# Cake grammar", () =>
14+
describe("C# Cake grammar", () =>
1515
it("parses the grammar", () => {
1616
const grammar = atom.grammars.grammarForScopeName("source.cake")
17-
return expect(grammar).toBeDefined()
17+
expect(grammar).toBeDefined()
1818
})
1919
)
2020
})

0 commit comments

Comments
 (0)