From db366e0a3789bb5d31364aadbf9ee6105e38c09e Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Wed, 29 Apr 2015 14:12:01 +0200 Subject: [PATCH] Fix 'stoped' typo Reviewers: thiblahute Differential Revision: http://phabricator.freedesktop.org/D137 --- validate/gst/validate/gst-validate-report.c | 2 +- validate/launcher/httpserver.py | 2 +- validate/launcher/vfb_server.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/validate/gst/validate/gst-validate-report.c b/validate/gst/validate/gst-validate-report.c index 92797e1f44..1300235c2b 100644 --- a/validate/gst/validate/gst-validate-report.c +++ b/validate/gst/validate/gst-validate-report.c @@ -315,7 +315,7 @@ gst_validate_report_load_issues (void) _("Query position reported a value outside of the current expected " "segment"), NULL); REGISTER_VALIDATE_ISSUE (CRITICAL, SCENARIO_NOT_ENDED, - _("All the actions were not executed before the program stoped"), NULL); + _("All the actions were not executed before the program stopped"), NULL); REGISTER_VALIDATE_ISSUE (CRITICAL, SCENARIO_FILE_MALFORMED, _("The scenario file was malformed"), NULL); REGISTER_VALIDATE_ISSUE (CRITICAL, SCENARIO_ACTION_EXECUTION_ERROR, diff --git a/validate/launcher/httpserver.py b/validate/launcher/httpserver.py index 1248c014f3..c291ea6342 100644 --- a/validate/launcher/httpserver.py +++ b/validate/launcher/httpserver.py @@ -103,4 +103,4 @@ class HTTPServer(loggable.Loggable): if self._process: self._process.terminate() self._process = None - self.debug("Server stoped") + self.debug("Server stopped") diff --git a/validate/launcher/vfb_server.py b/validate/launcher/vfb_server.py index f52f6733fb..5a24c58f9a 100644 --- a/validate/launcher/vfb_server.py +++ b/validate/launcher/vfb_server.py @@ -102,7 +102,7 @@ class Xvfb(VirtualFrameBufferServer): if self._process: self._process.terminate() self._process = None - self.debug("xvfb stoped") + self.debug("xvfb stopped") def get_virual_frame_buffer_server(options):