Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix discarded tests #566

Merged
merged 2 commits into from
Jun 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/type_check_worker_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ def world: () -> void
end
end

def test_handle_job_validate_lib_signature_skip
def test_handle_job_typecheck_skip
in_tmpdir do
project = Project.new(steepfile_path: current_dir + "Steepfile")
Project::DSL.parse(project, <<EOF)
Expand Down
2 changes: 1 addition & 1 deletion test/type_construction_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8235,7 +8235,7 @@ def bar
end
end

def test_send_solution_block_body_type_check_failure
def test_send_solution_block_body_type_check_failure_with_annotation
with_checker(<<-RBS) do |checker|
class Solution[X]
def foo: [A, B] (B) { (B) -> Integer } -> [X, A]
Expand Down