Skip to content

Commit 2bd7da9

Browse files
zaki-yamajovel
authored andcommittedDec 13, 2019
fix: correct typo in test/util.js (#1523)
1 parent b4e5f67 commit 2bd7da9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎test/scenarios/add-and-remove-repository-collaborator-test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const { loadFixture, fixtureToInstace } = require("../util");
1+
const { loadFixture, fixtureToInstance } = require("../util");
22

33
require("../mocha-node-setup");
44

@@ -9,10 +9,10 @@ describe("api.github.com", () => {
99
beforeEach(() => {
1010
return loadFixture("add-and-remove-repository-collaborator").then(
1111
fixture => {
12-
githubUserA = fixtureToInstace(fixture, {
12+
githubUserA = fixtureToInstance(fixture, {
1313
auth: "token 0000000000000000000000000000000000000001"
1414
});
15-
githubUserB = fixtureToInstace(fixture, {
15+
githubUserB = fixtureToInstance(fixture, {
1616
auth: "token 0000000000000000000000000000000000000002"
1717
});
1818
}

‎test/util.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
loadFixture,
3-
fixtureToInstace,
3+
fixtureToInstance,
44
getInstance
55
};
66

@@ -24,7 +24,7 @@ function loadFixture(scenario) {
2424
});
2525
}
2626

27-
function fixtureToInstace({ url }, options) {
27+
function fixtureToInstance({ url }, options) {
2828
return new Octokit(
2929
Object.assign(options || {}, {
3030
baseUrl: url
@@ -34,6 +34,6 @@ function fixtureToInstace({ url }, options) {
3434

3535
function getInstance(scenario, options) {
3636
return loadFixture(scenario).then(fixture =>
37-
fixtureToInstace(fixture, options)
37+
fixtureToInstance(fixture, options)
3838
);
3939
}

0 commit comments

Comments
 (0)
Please sign in to comment.