Update read/write tests to match API changes.

This commit is contained in:
Michael Jumper 2012-10-19 12:09:01 -07:00
parent d44ec4b2c1
commit f3384e8eb7
2 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ void test_instruction_read() {
CU_ASSERT_STRING_EQUAL(instruction->argv[1], "worldworldworld");
guac_instruction_free(instruction);
guac_socket_close(socket);
guac_socket_free(socket);
}

View File

@ -81,7 +81,7 @@ void test_instruction_write() {
guac_protocol_send_sync(socket, 12345);
guac_socket_flush(socket);
guac_socket_close(socket);
guac_socket_free(socket);
exit(0);
}