summaryrefslogtreecommitdiff
path: root/auto_tests
diff options
context:
space:
mode:
authorChristian Brueffer <christian@brueffer.de>2013-08-09 13:57:05 +0200
committerChristian Brueffer <christian@brueffer.de>2013-08-09 14:01:35 +0200
commit0b8fa729146c8033be161540289baa2244c94042 (patch)
treea3ed7b95ed09342402f37892ba2246436897e9d9 /auto_tests
parent29264b58fc58c5c22f301b9c2ed1a03eab78b310 (diff)
Fix a recurring typo in code and comments.
Diffstat (limited to 'auto_tests')
-rwxr-xr-xauto_tests/friends_test.c2
-rw-r--r--auto_tests/messenger_test.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/auto_tests/friends_test.c b/auto_tests/friends_test.c
index 11c6bf29..6c7569be 100755
--- a/auto_tests/friends_test.c
+++ b/auto_tests/friends_test.c
@@ -132,7 +132,7 @@ int parent_wait_for_message(void)
132 } 132 }
133 133
134 if(!(request_flags & SECOND_FLAG)) { 134 if(!(request_flags & SECOND_FLAG)) {
135 fputs("\nParent hasn't recieved the message yet!\n" 135 fputs("\nParent hasn't received the message yet!\n"
136 "Messaging may be broken, failing the build!\n", stderr); 136 "Messaging may be broken, failing the build!\n", stderr);
137 kill(child_pid, SIGKILL); 137 kill(child_pid, SIGKILL);
138 return -1; 138 return -1;
diff --git a/auto_tests/messenger_test.c b/auto_tests/messenger_test.c
index 4c5c29ad..af902083 100644
--- a/auto_tests/messenger_test.c
+++ b/auto_tests/messenger_test.c
@@ -7,7 +7,7 @@
7 * 7 *
8 * Note: 8 * Note:
9 * None of the functions here test things that rely on the network, i.e. 9 * None of the functions here test things that rely on the network, i.e.
10 * checking that status changes are recieved, messages can be sent, etc. 10 * checking that status changes are received, messages can be sent, etc.
11 * All of that is done in a separate test, with two local clients running. */ 11 * All of that is done in a separate test, with two local clients running. */
12 12
13#include "../core/Messenger.h" 13#include "../core/Messenger.h"