Skip to content

Commit

Permalink
123
Browse files Browse the repository at this point in the history
  • Loading branch information
iddm committed Sep 19, 2023
1 parent 86ee00c commit 3781cb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/BUILD_LINUX_REUSABLE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
- name: format
run: cargo fmt -- --check
- name: Build
run: V8_VERSION=${{ inputs.v8_version }} V8_UPDATE_HEADERS=${{ inputs.v8_update_headers }} cargo build -vv
run: V8_VERSION=${{ inputs.v8_version }} V8_UPDATE_HEADERS=${{ inputs.v8_update_headers }} cargo build -vv -- --nocapture
- name: Run tests
run: V8_VERSION=${{ inputs.v8_version }} V8_UPDATE_HEADERS=${{ inputs.v8_update_headers }} cargo test -vv
run: V8_VERSION=${{ inputs.v8_version }} V8_UPDATE_HEADERS=${{ inputs.v8_update_headers }} cargo test -vv -- --nocapture
2 changes: 1 addition & 1 deletion src/v8/inspector/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,7 @@ mod tests {
// Now let's wait for the user to connect.
{
// let _lock = wait.lock().unwrap();
let web_socket = 'accept_loop: loop {
let _web_socket = 'accept_loop: loop {
let start_accepting_time = std::time::Instant::now();

match server.try_accept_next_websocket_connection() {
Expand Down

0 comments on commit 3781cb3

Please sign in to comment.