Skip to content

Commit

Permalink
fix: using outdated YSI paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ADRFranklin committed Dec 9, 2022
1 parent 5542600 commit b552a33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test.pwn
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
#define RUN_TESTS

#include <a_samp>
#include <YSI\y_testing>
#include <YSI_Core\y_testing>


Test:ConnectDisconnect()
{
new Redis:client;
new ret;

ret = Redis_Connect("localhost", 6379, "", client);
printf("client: %d", _:client);
ASSERT(client != Redis:-1);
Expand Down Expand Up @@ -256,7 +256,7 @@ new PubSub:pubsub_2;
new Redis:client_pubsub_2;
TestInit:MultiMessage()
{
new ret = Redis_Subscribe("localhost", 6379, "", "samp.test.2", "Receive", pubsub_2);
new ret = Redis_Subscribe("localhost", 6379, "", "samp.test.2", "Receive2", pubsub_2);
ASSERT(ret == 0);

ret = Redis_Connect("localhost", 6379, "", client_pubsub_2);
Expand Down

0 comments on commit b552a33

Please sign in to comment.