Skip to content

Commit 4b02dad

Browse files
committed
style: minor changes
1 parent 064db72 commit 4b02dad

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lisp/link/add.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
(eask-link-add--create source)
8484
(when (and (zerop (length links)) ; if no link previously,
8585
(= 1 (length (eask-link-list)))) ; and first link created!
86-
(eask-help "link/add/success/pkg" t))) ;; don't error
86+
(eask-help "link/add/success/pkg" t))) ; don't error
8787
((ignore-errors (file-exists-p pkg-eask))
8888
(eask-log "💡 Validating package through %s... done!" pkg-eask)
8989
(eask--save-load-eask-file pkg-eask
@@ -113,7 +113,7 @@
113113
(eask-link-add--create source)
114114
(when (and (zerop (length links)) ; if no link previously,
115115
(= 1 (length (eask-link-list)))) ; and first link created!
116-
(eask-help "link/add/success/eask" t))) ;; don't error
116+
(eask-help "link/add/success/eask" t))) ; don't error
117117
(eask-error "✗ Error loading Eask-file: %s" pkg-eask)))
118118
(t
119119
(eask-info "(Missing `%s-pkg.el` file in your source folder)" name)

test/jest/install.test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ describe("install and uninstall", () => {
1414
afterAll(() => ctx.cleanUp());
1515

1616
it("installs project package", async () => {
17-
await ctx.runEask("package"); // creates dist/<pkg>.tar
18-
await ctx.runEask("install"); // installs dependencies and generated package
17+
await ctx.runEask("package"); // creates dist/<pkg>.tar
18+
await ctx.runEask("install"); // installs dependencies and generated package
1919
const { stderr } = await ctx.runEask("list");
2020
expect(stderr).toMatch(packageName);
2121
});
@@ -53,6 +53,8 @@ describe("install and uninstall", () => {
5353
expect(stderr).not.toMatch(packageName);
5454
});
5555

56+
/* File install */
57+
5658
describe("eask install-file", () => {
5759
beforeAll(async () => {
5860
await ctx.runEask("clean workspace");
@@ -68,8 +70,6 @@ describe("install and uninstall", () => {
6870
expect(stderr).toMatch("foo");
6971
});
7072

71-
/* File install */
72-
7373
it("can repeat installs", async () => {
7474
await ctx.runEask("install-file ./foo-mode");
7575
});

0 commit comments

Comments
 (0)