File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/test/java/im/tox/tox4j/core/exceptions Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -272,10 +272,10 @@ scala_binary(
272272 name = "AudioPlaybackShow" ,
273273 testonly = True ,
274274 srcs = [
275- "src/tools/java/im/tox/tox4j/av/callbacks/audio/AudioPlaybackShow.scala" ,
276- "src/test/java/im/tox/tox4j/av/callbacks/audio/AudioPlayback.scala" ,
277275 "src/test/java/im/tox/tox4j/av/callbacks/audio/AudioGenerator.scala" ,
278276 "src/test/java/im/tox/tox4j/av/callbacks/audio/AudioGenerators.scala" ,
277+ "src/test/java/im/tox/tox4j/av/callbacks/audio/AudioPlayback.scala" ,
278+ "src/tools/java/im/tox/tox4j/av/callbacks/audio/AudioPlaybackShow.scala" ,
279279 ],
280280 main_class = "im.tox.tox4j.av.callbacks.audio.AudioPlaybackShow" ,
281281 resources = glob ([
Original file line number Diff line number Diff line change @@ -36,13 +36,13 @@ final class ToxFriendCustomPacketExceptionTest extends FunSuite with ToxTestMixi
3636
3737 test(" SendLosslessPacketInvalid" ) {
3838 interceptWithTox(ToxFriendCustomPacketException .Code .INVALID )(
39- _.friendSendLosslessPacket(friendNumber, ToxLosslessPacket .unsafeFromValue(Array [Byte ](159 .toByte)))
39+ _.friendSendLosslessPacket(friendNumber, ToxLosslessPacket .unsafeFromValue(Array [Byte ](100 .toByte)))
4040 )
4141 }
4242
4343 test(" SendLossyPacketInvalid" ) {
4444 interceptWithTox(ToxFriendCustomPacketException .Code .INVALID )(
45- _.friendSendLossyPacket(friendNumber, ToxLossyPacket .unsafeFromValue(Array [Byte ](199 .toByte)))
45+ _.friendSendLossyPacket(friendNumber, ToxLossyPacket .unsafeFromValue(Array [Byte ](100 .toByte)))
4646 )
4747 }
4848
You can’t perform that action at this time.
0 commit comments