Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
fix(release-please): setup.py retains formatting (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed Feb 20, 2021
1 parent b7d6077 commit 038a2f3
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 37 deletions.
62 changes: 28 additions & 34 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -26,7 +26,7 @@
"homepage": "https://github.com/bcoe/release-please-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"release-please": "11.0.0-candidate.1"
"release-please": "^11.0.0-candidate.3"
},
"devDependencies": {
"@vercel/ncc": "^0.27.0",
Expand Down
4 changes: 2 additions & 2 deletions test/release-please.js
Expand Up @@ -285,7 +285,7 @@ describe('release-please-action', () => {

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

it('creates and runs a GitHubRelease, using factory', async () => {
let maybeGitHubRelease
sandbox.replace(factory, 'run', (runnable) => {
sandbox.replace(factory, 'call', (runnable) => {
maybeGitHubRelease = runnable
})
const input = {
Expand Down

0 comments on commit 038a2f3

Please sign in to comment.