diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-08-12 12:18:15 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-08-12 12:18:15 -0400 |
commit | 53241d628aaec0d06d587f9bbc3eeec8d65525e3 (patch) | |
tree | 33f155c31d233afa7f39e47e95574588f319522c | |
parent | 3306dfd21348c7a724b0a7ae0f167ec4c69b7c40 (diff) | |
download | stasis-53241d628aaec0d06d587f9bbc3eeec8d65525e3.tar.gz |
Import private delivery functions required for mock context creation
-rw-r--r-- | tests/test_artifactory.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_artifactory.c b/tests/test_artifactory.c index ea9c8ab..1a21f0e 100644 --- a/tests/test_artifactory.c +++ b/tests/test_artifactory.c @@ -1,5 +1,9 @@ #include "testing.h" +// Import private functions from core +extern int delivery_init_platform(struct Delivery *ctx); +extern int populate_delivery_cfg(struct Delivery *ctx, int render_mode); + struct JFRT_Auth gauth; struct JFRT_Auth gnoauth; struct Delivery ctx; |