tests: don't use private debug category in asset test

That will lead to undefined symbol errors once it no
longer gets exported.
This commit is contained in:
Tim-Philipp Müller 2017-08-11 21:41:52 +01:00
parent b0f0655343
commit 7bec37a755
2 changed files with 2 additions and 1 deletions

View file

@ -34,7 +34,9 @@
G_BEGIN_DECLS G_BEGIN_DECLS
GST_DEBUG_CATEGORY_EXTERN (_ges_debug); GST_DEBUG_CATEGORY_EXTERN (_ges_debug);
#ifndef GST_CAT_DEFAULT
#define GST_CAT_DEFAULT _ges_debug #define GST_CAT_DEFAULT _ges_debug
#endif
/* The first 2 NLE priorities are used for: /* The first 2 NLE priorities are used for:
* 0- The Mixing element * 0- The Mixing element

View file

@ -20,7 +20,6 @@
*/ */
#include "test-utils.h" #include "test-utils.h"
#undef GST_CAT_DEFAULT
#include "../../../ges/ges-internal.h" #include "../../../ges/ges-internal.h"
#include <ges/ges.h> #include <ges/ges.h>
#include <gst/check/gstcheck.h> #include <gst/check/gstcheck.h>