Skip to content

Commit 7b755f4

Browse files
committed
fixup tests
1 parent 035beb9 commit 7b755f4

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -821,8 +821,8 @@ jobs:
821821
- name: Check whether formula is up-to-date
822822
run: >
823823
./packaging/homebrew/verify-oss-formula-uptodate
824-
-c homebrew-core.git
825-
-r upstream
824+
-c /opt/homebrew/Library/Taps/homebrew/homebrew-core
825+
-r origin
826826
timeout-minutes: 5
827827

828828
- name: Modify formula

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Release 6.1.1 (Not yet released)
22
-------------
3-
* [Ruby] Improve support for Frozen String Literals. Closes GH-2619.
3+
* [Ruby] Improve support for Ruby 4 and Frozen String Literals. Closes GH-2619.
44
* [Ubuntu] Add packages for Ubuntu 25.10 "questing", remove packages for Ubuntu 25.04 "plucky".
55
* Upgrade Boost from 1.87 -> 1.89.
66
* [Nginx] Upgrades preferred Nginx to 1.28.0 from 1.26.3.

package-lock.json

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

packaging/homebrew

test/integration_tests/shared/example_webapp_tests.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@
5959
begin
6060
# For some reason the WSGI stub app does not accept the multipart data generated by
6161
# post(), so we use curl instead.
62-
command = "curl --silent --fail -F name1=Kotonoha -F name2=Sekai -F data=@stub/garbage1.dat " +
63-
"#{@server}/upload_with_params"
62+
command = "curl --disable --silent --fail -F name1=Kotonoha -F name2=Sekai -F data=@stub/garbage1.dat #{@server}/upload_with_params"
6463
response = IO.popen(command, "rb") do |io|
6564
io.read
6665
end

0 commit comments

Comments
 (0)