Skip to content

Commit 884fcb8

Browse files
Tests fix
1 parent 4f30dac commit 884fcb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

c-sharp-chat/PubnubChatApi/PubNubChatApi.Tests/PubnubTestsParameters.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public static class PubnubTestsParameters
66
private static readonly string EnvSubscribeKey = Environment.GetEnvironmentVariable("PN_SUB_KEY");
77
private static readonly string EnvSecretKey = Environment.GetEnvironmentVariable("PN_SEC_KEY");
88

9-
public static readonly string PublishKey = "pub-c-79c582a2-d7a4-4ee7-9f28-7a6f1b7fa11c";//string.IsNullOrEmpty(EnvPublishKey) ? "demo-36" : EnvPublishKey;
10-
public static readonly string SubscribeKey = "sub-c-ca0af928-f4f9-474c-b56e-d6be81bf8ed0";//string.IsNullOrEmpty(EnvSubscribeKey) ? "demo-36" : EnvSubscribeKey;
9+
public static readonly string PublishKey = string.IsNullOrEmpty(EnvPublishKey) ? "demo-36" : EnvPublishKey;
10+
public static readonly string SubscribeKey = string.IsNullOrEmpty(EnvSubscribeKey) ? "demo-36" : EnvSubscribeKey;
1111
public static readonly string SecretKey = string.IsNullOrEmpty(EnvSecretKey) ? "demo-36" : EnvSecretKey;
1212
}

0 commit comments

Comments
 (0)