keyfile: fix some test error message cut+paste errors

This commit is contained in:
Dan Winship 2013-01-31 15:03:19 -05:00
parent 76b5e24ac9
commit 414af39c3c

View file

@ -603,7 +603,7 @@ test_write_wired_connection (void)
owner_grp = getegid ();
success = nm_keyfile_plugin_write_test_connection (connection, TEST_SCRATCH_DIR, owner_uid, owner_grp, &testfile, &error);
ASSERT (success == TRUE,
"connection-write", "failed to allocate write keyfile: %s",
"connection-write", "failed to write keyfile: %s",
error ? error->message : "(none)");
ASSERT (testfile != NULL,
@ -821,7 +821,7 @@ test_write_ip6_wired_connection (void)
owner_grp = getegid ();
success = nm_keyfile_plugin_write_test_connection (connection, TEST_SCRATCH_DIR, owner_uid, owner_grp, &testfile, &error);
ASSERT (success == TRUE,
"connection-write", "failed to allocate write keyfile: %s",
"connection-write", "failed to write keyfile: %s",
error ? error->message : "(none)");
ASSERT (testfile != NULL,
@ -1139,7 +1139,7 @@ test_write_wireless_connection (void)
owner_grp = getegid ();
success = nm_keyfile_plugin_write_test_connection (connection, TEST_SCRATCH_DIR, owner_uid, owner_grp, &testfile, &error);
ASSERT (success == TRUE,
"connection-write", "failed to allocate write keyfile: %s",
"connection-write", "failed to write keyfile: %s",
error ? error->message : "(none)");
ASSERT (testfile != NULL,
@ -1269,7 +1269,7 @@ test_write_string_ssid (void)
owner_grp = getegid ();
success = nm_keyfile_plugin_write_test_connection (connection, TEST_SCRATCH_DIR, owner_uid, owner_grp, &testfile, &error);
ASSERT (success == TRUE,
"connection-write", "failed to allocate write keyfile: %s",
"connection-write", "failed to write keyfile: %s",
error ? error->message : "(none)");
ASSERT (testfile != NULL,
@ -1916,7 +1916,7 @@ test_write_bt_dun_connection (void)
owner_grp = getegid ();
success = nm_keyfile_plugin_write_test_connection (connection, TEST_SCRATCH_DIR, owner_uid, owner_grp, &testfile, &error);
ASSERT (success == TRUE,
"connection-write", "failed to allocate write keyfile: %s",
"connection-write", "failed to write keyfile: %s",
error ? error->message : "(none)");
ASSERT (testfile != NULL,
@ -2162,7 +2162,7 @@ test_write_gsm_connection (void)
owner_grp = getegid ();
success = nm_keyfile_plugin_write_test_connection (connection, TEST_SCRATCH_DIR, owner_uid, owner_grp, &testfile, &error);
ASSERT (success == TRUE,
"connection-write", "failed to allocate write keyfile: %s",
"connection-write", "failed to write keyfile: %s",
error ? error->message : "(none)");
ASSERT (testfile != NULL,