Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
c410-f3r committed Sep 23, 2024
1 parent f80a081 commit 926fcfc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .scripts/internal-tests-0.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ $rt test-with-features wtx pool
$rt test-with-features wtx postgres
$rt test-with-features wtx proptest
$rt test-with-features wtx quick-protobuf
$rt test-with-features wtx rand
$rt test-with-features wtx rand_chacha
$rt test-with-features wtx ring
$rt test-with-features wtx rust_decimal
$rt test-with-features wtx schema-manager
Expand Down
4 changes: 2 additions & 2 deletions wtx-fuzz/web_socket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@

use tokio::runtime::Builder;
use wtx::{
misc::{BytesStream, NoStdRng},
misc::{simple_seed, BytesStream, Xorshift64},
web_socket::{FrameBufferVec, FrameMutVec, OpCode, WebSocketBuffer, WebSocketServerOwned},
};

libfuzzer_sys::fuzz_target!(|data: (OpCode, &[u8])| {
Builder::new_current_thread().enable_all().build().unwrap().block_on(async move {
let Ok(mut ws) = WebSocketServerOwned::new(
(),
NoStdRng::default(),
Xorshift64::from(simple_seed()),
BytesStream::default(),
WebSocketBuffer::default(),
) else {
Expand Down

0 comments on commit 926fcfc

Please sign in to comment.