summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/gold/html/support/jquery.isonscreen.js2
-rw-r--r--tests/test_config.py2
-rw-r--r--tests/test_context.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/gold/html/support/jquery.isonscreen.js b/tests/gold/html/support/jquery.isonscreen.js
index 0182ebd2..28fb99bc 100644
--- a/tests/gold/html/support/jquery.isonscreen.js
+++ b/tests/gold/html/support/jquery.isonscreen.js
@@ -8,7 +8,7 @@
(function($) {
jQuery.extend({
isOnScreen: function(box, container) {
- //ensure numbers come in as intgers (not strings) and remove 'px' is it's there
+ //ensure numbers come in as integers (not strings) and remove 'px' is it's there
for(var i in box){box[i] = parseFloat(box[i])};
for(var i in container){container[i] = parseFloat(container[i])};
diff --git a/tests/test_config.py b/tests/test_config.py
index 2bef500e..bf9cb4a5 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -448,7 +448,7 @@ class ConfigFileTest(UsingModulesMixin, CoverageTest):
cover_pylib = TRUE
parallel = on
concurrency = thread
- ; this omit is overriden by the omit from [report]
+ ; this omit is overridden by the omit from [report]
omit = twenty
source = myapp
source_pkgs = ned
diff --git a/tests/test_context.py b/tests/test_context.py
index b20ecdef..3f80803b 100644
--- a/tests/test_context.py
+++ b/tests/test_context.py
@@ -197,7 +197,7 @@ def get_qualname():
"""Helper to return qualname_from_frame for the caller."""
stack = inspect.stack()[1:]
if any(sinfo[0].f_code.co_name == "get_qualname" for sinfo in stack):
- # We're calling outselves recursively, maybe because we're testing
+ # We're calling ourselves recursively, maybe because we're testing
# properties. Return an int to try to get back on track.
return 17
caller_frame = stack[0][0]