summaryrefslogtreecommitdiff
path: root/src/testing
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-04-26 20:25:37 +0200
committerChristian Grothoff <christian@grothoff.org>2021-04-26 20:25:37 +0200
commitaa78134a557079ce570345e751e4c36c4b2ba79a (patch)
treef7bf25950513285184e2426109235337d0aef8be /src/testing
parent1f2674fe293be7c1a852fbe4a7241fbcb149078f (diff)
-fix many more typos
Diffstat (limited to 'src/testing')
-rw-r--r--src/testing/testing_api_cmd_hello_world_birth.c8
-rw-r--r--src/testing/testing_api_loop.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/testing/testing_api_cmd_hello_world_birth.c b/src/testing/testing_api_cmd_hello_world_birth.c
index 2a5bded92..9d60059a5 100644
--- a/src/testing/testing_api_cmd_hello_world_birth.c
+++ b/src/testing/testing_api_cmd_hello_world_birth.c
@@ -95,16 +95,16 @@ hello_world_birth_run (void *cls,
struct GNUNET_TESTING_Interpreter *is)
{
struct HelloWorldBirthState *hbs = cls;
- struct GNUNET_TIME_Relative relativ;
+ struct GNUNET_TIME_Relative relative;
- relativ = GNUNET_TIME_absolute_get_difference (*hbs->date,
+ relative = GNUNET_TIME_absolute_get_difference (*hbs->date,
GNUNET_TIME_absolute_get ());
- if (0 == relativ.rel_value_us % 10)
+ if (0 == relative.rel_value_us % 10)
{
hbs->what_am_i = "creature!";
}
- else if (0 == relativ.rel_value_us % 2)
+ else if (0 == relative.rel_value_us % 2)
{
hbs->what_am_i = "girl!";
}
diff --git a/src/testing/testing_api_loop.c b/src/testing/testing_api_loop.c
index dbd86ba90..1b50b9ff5 100644
--- a/src/testing/testing_api_loop.c
+++ b/src/testing/testing_api_loop.c
@@ -220,7 +220,7 @@ run_finish_task_sync (void *cls)
- sync_state->start_finish_time.abs_value_us)
{
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
- "The command with label %s did not finish its asyncronous task in time.\n",
+ "The command with label %s did not finish its asynchronous task in time.\n",
cmd->label);
is->result = GNUNET_SYSERR;
GNUNET_SCHEDULER_shutdown ();