Skip to content

Commit c42e79a

Browse files
authored
Merge pull request #835 from integer32llc/maint
2 parents 100bc9f + 6de99dd commit c42e79a

File tree

10 files changed

+615
-557
lines changed

10 files changed

+615
-557
lines changed

compiler/base/Cargo.toml

Lines changed: 188 additions & 180 deletions
Large diffs are not rendered by default.

compiler/base/crate-information.json

Lines changed: 88 additions & 88 deletions
Large diffs are not rendered by default.

compiler/base/modify-cargo-toml/Cargo.lock

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

tests/Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ GEM
2222
matrix (0.4.2)
2323
mini_mime (1.1.2)
2424
mini_portile2 (2.8.0)
25-
nokogiri (1.13.7)
25+
nokogiri (1.13.8)
2626
mini_portile2 (~> 2.8.0)
2727
racc (~> 1.4)
2828
public_suffix (4.0.7)
@@ -46,7 +46,7 @@ GEM
4646
rspec-support (~> 3.11.0)
4747
rspec-support (3.11.0)
4848
rubyzip (2.3.2)
49-
selenium-webdriver (4.3.0)
49+
selenium-webdriver (4.4.0)
5050
childprocess (>= 0.5, < 5.0)
5151
rexml (~> 3.2, >= 3.2.5)
5252
rubyzip (>= 1.2.2, < 3.0)

tests/spec/features/automatic_primary_action_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
click_on("Build")
2929

3030
within(:output, :stderr) do
31-
expect(page).to have_content 'function is never used: `main`'
31+
expect(page).to have_content 'function `main` is never used'
3232
end
3333
end
3434

@@ -75,7 +75,7 @@
7575
click_on("Build")
7676

7777
within(:output, :stderr) do
78-
expect(page).to have_content 'function is never used: `main`'
78+
expect(page).to have_content 'function `main` is never used'
7979
end
8080
end
8181

@@ -134,7 +134,7 @@
134134
click_on("Build")
135135

136136
within(:output, :stderr) do
137-
expect(page).to have_content 'function is never used: `arbitrary_code`'
137+
expect(page).to have_content 'function `arbitrary_code` is never used'
138138
end
139139
end
140140

tests/spec/features/compilation_targets_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
scenario "choosing to build the code" do
3131
in_build_menu { click_on(build_button: "Build") }
3232
within(:output, :stderr) do
33-
expect(page).to have_content 'function is never used: `main`'
33+
expect(page).to have_content 'function `main` is never used'
3434
end
3535
end
3636

0 commit comments

Comments
 (0)