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

Commit 038a2f3

Browse files
author
Benjamin E. Coe
authored
fix(release-please): setup.py retains formatting (#246)
1 parent b7d6077 commit 038a2f3

3 files changed

Lines changed: 31 additions & 37 deletions

File tree

package-lock.json

Lines changed: 28 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"homepage": "https://github.com/bcoe/release-please-action#readme",
2727
"dependencies": {
2828
"@actions/core": "^1.2.6",
29-
"release-please": "11.0.0-candidate.1"
29+
"release-please": "^11.0.0-candidate.3"
3030
},
3131
"devDependencies": {
3232
"@vercel/ncc": "^0.27.0",

test/release-please.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ describe('release-please-action', () => {
285285

286286
it('creates and runs a ReleasePR instance, using factory', async () => {
287287
let maybeReleasePR
288-
sandbox.replace(factory, 'run', (runnable) => {
288+
sandbox.replace(factory, 'call', (runnable) => {
289289
maybeReleasePR = runnable
290290
})
291291
const input = {
@@ -301,7 +301,7 @@ describe('release-please-action', () => {
301301

302302
it('creates and runs a GitHubRelease, using factory', async () => {
303303
let maybeGitHubRelease
304-
sandbox.replace(factory, 'run', (runnable) => {
304+
sandbox.replace(factory, 'call', (runnable) => {
305305
maybeGitHubRelease = runnable
306306
})
307307
const input = {

0 commit comments

Comments
 (0)