[gitg] Update tests for changes in command fn names
- From: Jesse van den Kieboom <jessevdk src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gitg] Update tests for changes in command fn names
- Date: Sat, 6 Nov 2010 14:09:41 +0000 (UTC)
commit cfcfaf9c4eee439765b8aa38ebc9ab0c50a6b975
Author: Jesse van den Kieboom <jesse vandenkieboom epfl ch>
Date: Sat Nov 6 15:09:34 2010 +0100
Update tests for changes in command fn names
tests/shell.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/tests/shell.c b/tests/shell.c
index 04d2e5b..9e0d67f 100644
--- a/tests/shell.c
+++ b/tests/shell.c
@@ -131,7 +131,7 @@ test_success (RepositoryInfo *info,
gboolean ret;
GError *error = NULL;
- ret = gitg_shell_run_sync (gitg_command_newv (info->repository,
+ ret = gitg_shell_run_sync (gitg_command_new (info->repository,
"rev-parse",
"HEAD",
NULL),
@@ -148,7 +148,7 @@ test_fail (RepositoryInfo *info,
gboolean ret;
GError *error = NULL;
- ret = gitg_shell_run_sync (gitg_command_newv (info->repository,
+ ret = gitg_shell_run_sync (gitg_command_new (info->repository,
"bogus",
NULL),
&error);
@@ -166,7 +166,7 @@ test_output (RepositoryInfo *info,
gchar **ret;
GError *error = NULL;
- ret = gitg_shell_run_sync_with_output (gitg_command_newv (info->repository,
+ ret = gitg_shell_run_sync_with_output (gitg_command_new (info->repository,
"rev-parse",
"HEAD",
NULL),
@@ -188,7 +188,7 @@ test_input (void)
gchar const *input = "Hello world";
GError *error = NULL;
- ret = gitg_shell_run_sync_with_input_and_output (gitg_command_newv (NULL,
+ ret = gitg_shell_run_sync_with_input_and_output (gitg_command_new (NULL,
"cat",
"-",
NULL),
@@ -212,8 +212,8 @@ test_pipe (void)
ret = gitg_shell_run_sync_with_outputv (FALSE,
&error,
- gitg_command_newv (NULL, "echo", input, NULL),
- gitg_command_newv (NULL, "cat", "-", NULL),
+ gitg_command_new (NULL, "echo", input, NULL),
+ gitg_command_new (NULL, "cat", "-", NULL),
NULL);
g_assert_no_error (error);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]