@@ -43,8 +43,8 @@ struct RpcTestConfig {
4343 static RpcTestConfig fromEnv () {
4444 RpcTestConfig config;
4545 const char *url = std::getenv (" LIVEKIT_URL" );
46- const char *token_a = std::getenv (" LK_TOKEN_TEST_A " );
47- const char *token_b = std::getenv (" LK_TOKEN_TEST_B " );
46+ const char *token_a = std::getenv (" LIVEKIT_TOKEN_A " );
47+ const char *token_b = std::getenv (" LIVEKIT_TOKEN_B " );
4848
4949 if (url && token_a && token_b) {
5050 config.url = url;
@@ -118,7 +118,7 @@ class RpcIntegrationTest : public ::testing::Test {
118118TEST_F (RpcIntegrationTest, BasicRpcRoundTrip) {
119119 if (!config_.available ) {
120120 GTEST_SKIP ()
121- << " LIVEKIT_URL, LK_TOKEN_TEST_A , and LK_TOKEN_TEST_B not set" ;
121+ << " LIVEKIT_URL, LIVEKIT_TOKEN_A , and LIVEKIT_TOKEN_B not set" ;
122122 }
123123
124124 // Create receiver room
@@ -188,7 +188,7 @@ TEST_F(RpcIntegrationTest, BasicRpcRoundTrip) {
188188TEST_F (RpcIntegrationTest, MaxPayloadSize) {
189189 if (!config_.available ) {
190190 GTEST_SKIP ()
191- << " LIVEKIT_URL, LK_TOKEN_TEST_A , and LK_TOKEN_TEST_B not set" ;
191+ << " LIVEKIT_URL, LIVEKIT_TOKEN_A , and LIVEKIT_TOKEN_B not set" ;
192192 }
193193
194194 auto receiver_room = std::make_unique<Room>();
@@ -233,7 +233,7 @@ TEST_F(RpcIntegrationTest, MaxPayloadSize) {
233233TEST_F (RpcIntegrationTest, RpcTimeout) {
234234 if (!config_.available ) {
235235 GTEST_SKIP ()
236- << " LIVEKIT_URL, LK_TOKEN_TEST_A , and LK_TOKEN_TEST_B not set" ;
236+ << " LIVEKIT_URL, LIVEKIT_TOKEN_A , and LIVEKIT_TOKEN_B not set" ;
237237 }
238238
239239 auto receiver_room = std::make_unique<Room>();
@@ -280,7 +280,7 @@ TEST_F(RpcIntegrationTest, RpcTimeout) {
280280TEST_F (RpcIntegrationTest, UnsupportedMethod) {
281281 if (!config_.available ) {
282282 GTEST_SKIP ()
283- << " LIVEKIT_URL, LK_TOKEN_TEST_A , and LK_TOKEN_TEST_B not set" ;
283+ << " LIVEKIT_URL, LIVEKIT_TOKEN_A , and LIVEKIT_TOKEN_B not set" ;
284284 }
285285
286286 auto receiver_room = std::make_unique<Room>();
@@ -320,7 +320,7 @@ TEST_F(RpcIntegrationTest, UnsupportedMethod) {
320320TEST_F (RpcIntegrationTest, ApplicationError) {
321321 if (!config_.available ) {
322322 GTEST_SKIP ()
323- << " LIVEKIT_URL, LK_TOKEN_TEST_A , and LK_TOKEN_TEST_B not set" ;
323+ << " LIVEKIT_URL, LIVEKIT_TOKEN_A , and LIVEKIT_TOKEN_B not set" ;
324324 }
325325
326326 auto receiver_room = std::make_unique<Room>();
@@ -367,7 +367,7 @@ TEST_F(RpcIntegrationTest, ApplicationError) {
367367TEST_F (RpcIntegrationTest, ConcurrentRpcCalls) {
368368 if (!config_.available ) {
369369 GTEST_SKIP ()
370- << " LIVEKIT_URL, LK_TOKEN_TEST_A , and LK_TOKEN_TEST_B not set" ;
370+ << " LIVEKIT_URL, LIVEKIT_TOKEN_A , and LIVEKIT_TOKEN_B not set" ;
371371 }
372372
373373 auto receiver_room = std::make_unique<Room>();
@@ -435,7 +435,7 @@ TEST_F(RpcIntegrationTest, ConcurrentRpcCalls) {
435435TEST_F (RpcIntegrationTest, OneMinuteIntegration) {
436436 if (!config_.available ) {
437437 GTEST_SKIP ()
438- << " LIVEKIT_URL, LK_TOKEN_TEST_A , and LK_TOKEN_TEST_B not set" ;
438+ << " LIVEKIT_URL, LIVEKIT_TOKEN_A , and LIVEKIT_TOKEN_B not set" ;
439439 }
440440
441441 auto receiver_room = std::make_unique<Room>();
0 commit comments