Skip to content

Commit

Permalink
Fix remaining things
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Dec 12, 2023
1 parent 449a7e1 commit e8a4261
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

* liburing: avoid extra memcpy on RTP ([PR #1258](https://github.com/versatica/mediasoup/pull/1258)).
* libsrtp: use our own fork ([PR #1260](https://github.com/versatica/mediasoup/pull/1260)).
* Fix Rust `DataConsumer` in tests ([PR #1262](https://github.com/versatica/mediasoup/pull/1262)).


### 3.13.10
Expand Down
4 changes: 2 additions & 2 deletions rust/tests/integration/data_consumer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ fn get_stats_succeeds() {
#[test]
fn set_subchannels() {
future::block_on(async move {
let (_worker, router, transport1, data_producer) = init().await;
let (_worker, _router, transport1, data_producer) = init().await;

let data_consumer = transport1
.consume_data({
Expand All @@ -335,7 +335,7 @@ fn set_subchannels() {
.expect("Failed to consume data");

data_consumer
.set_subchannels([ 999, 999, 998, 65536 ].to_vec())
.set_subchannels([ 999, 999, 998, 0 ].to_vec())
.await
.expect("Failed to set data consumer subchannels");

Expand Down

0 comments on commit e8a4261

Please sign in to comment.