diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2021-10-05 20:15:24 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-06-27 08:00:10 +0200 |
commit | 727cfb9b77b6363cc666074f39c7fa14def284ef (patch) | |
tree | e04fd97d3f3729a2b75b21ab500b7b2ca811e870 /tests | |
parent | 2a52fce68050983b1d5bc3eddb0433c8f4a6dd48 (diff) | |
download | arctica-greeter-727cfb9b77b6363cc666074f39c7fa14def284ef.tar.gz arctica-greeter-727cfb9b77b6363cc666074f39c7fa14def284ef.tar.bz2 arctica-greeter-727cfb9b77b6363cc666074f39c7fa14def284ef.zip |
Fix some typos
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test.vala | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test.vala b/tests/test.vala index e90b29e..b129bfd 100644 --- a/tests/test.vala +++ b/tests/test.vala @@ -38,7 +38,7 @@ public class Test } } - // BEGIN This group of functions asume email/password for remote directory servers + // BEGIN This group of functions assume email/password for remote directory servers private static DashEntry remote_directory_entry_email_field (TestList list) { var fixed = list.selected_entry.get_child() as Gtk.Fixed; @@ -52,9 +52,9 @@ public class Test var grid = fixed.get_children().nth_data(1) as Gtk.Grid; return grid.get_child_at(1, 2) as DashEntry; } - // END This group of functions asume email/password for remote directory servers + // END This group of functions assume email/password for remote directory servers - // BEGIN This group of functions asume domain/username/password for remote login servers + // BEGIN This group of functions assume domain/username/password for remote login servers private static DashEntry remote_login_entry_domain_field (TestList list) { var fixed = list.selected_entry.get_child() as Gtk.Fixed; @@ -75,7 +75,7 @@ public class Test var grid = fixed.get_children().nth_data(1) as Gtk.Grid; return grid.get_child_at(1, 3) as DashEntry; } - // BEGIN This group of functions asume domain/username/password for remote login servers + // BEGIN This group of functions assume domain/username/password for remote login servers private static void do_scroll (TestList list, GreeterList.ScrollTarget direction) { @@ -703,7 +703,7 @@ public class Test MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; - /* don't go too fast, otherwise the lastest gdk3 will lose control... */ + /* don't go too fast, otherwise the latest gdk3 will lose control... */ Posix.sleep(1); /* Wait for Remote Login to appear */ |