Commit fd6bfc77 authored by Greg Williams's avatar Greg Williams
Browse files

Relocated socket testing to another port to fix CI build

parent 57cbfa10
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -129,7 +129,7 @@ namespace :test_server do
  end

  task :start do
    $test_server ||= KineticTestServer.new
    $test_server ||= KineticTestServer.new(8999)
  end

  task :shutdown do
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ void test_KineticSocket_KINETIC_PORT_should_be_8213(void)

void test_KineticSocket_Connect_should_create_a_socket_connection(void)
{
    int fd = KineticSocket_Connect("localhost", KINETIC_PORT, true);
    int fd = KineticSocket_Connect("localhost", 8999, true);

    TEST_ASSERT_MESSAGE(fd >= 0, "File descriptor invalid");