Skip to content
This repository was archived by the owner on Feb 25, 2024. It is now read-only.

Commit 3cd91d7

Browse files
committed
Adjusted ConnectionTest to fd805dd
1 parent fd805dd commit 3cd91d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/de/kaleidox/test/vban/ConnectionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static void main(String[] args) {
1313
try (VBAN<String> vban = VBAN.openTextStream(getLocalHost(), DEFAULT_PORT)) {
1414
int i = 0;
1515
while (i++ < 10) {
16-
vban.writeFlush("bus(0).mute=1".getBytes(StandardCharsets.UTF_8));
16+
vban.write("bus(0).mute=1\n".getBytes(StandardCharsets.UTF_8));
1717
Thread.sleep(500);
1818
vban.sendData("bus(0).mute=0");
1919
Thread.sleep(500);

0 commit comments

Comments
 (0)