summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plparse/tests/parser.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/plparse/tests/parser.c b/plparse/tests/parser.c
index 7e930d1..8281f28 100644
--- a/plparse/tests/parser.c
+++ b/plparse/tests/parser.c
@@ -34,6 +34,12 @@ static GMainLoop *loop = NULL;
static char **uris = NULL;
static gboolean http_supported = FALSE;
+typedef struct {
+ int count;
+ GMainLoop *mainloop;
+ char *uri;
+} AsyncParseData;
+
static char *
test_relative_real (const char *uri, const char *output)
{
@@ -667,13 +673,6 @@ test_parsing_not_really_php_but_html_instead (void)
g_free (uri);
}
-
-typedef struct {
- int count;
- GMainLoop *mainloop;
- char *uri;
-} AsyncParseData;
-
static void
parse_async_ready (GObject *pl, GAsyncResult *result, gpointer userdata)
{