From a24b512af1cd07f54139731810e18e26f343f1ea Mon Sep 17 00:00:00 2001 From: David Barnes <barnesdavidj@gmail.com> Date: Tue, 19 Jul 2022 16:26:08 -0400 Subject: [PATCH] Add some words to the cspell dictionary. Fix misspelling in code. --- .cspell.txt | 13 ++++++++++++- tests/test_views.py | 4 ++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.cspell.txt b/.cspell.txt index 5ec6ef8..6e159c5 100644 --- a/.cspell.txt +++ b/.cspell.txt @@ -1,5 +1,8 @@ # System automodule +bint +bools +bytesarray endfor endregion formset @@ -11,9 +14,12 @@ kwargs htmldjango maxdepth modindex +nbytes +ndim pytz quickstart subpackages +syspath templatetags toctree undoc @@ -21,12 +27,17 @@ urlpatterns # Domain asdfasdf -bint +deepcopied +dunder dunders +edgecase endmarkers +freezegun hexcode +itemsize laravel linenumber openpyxl sample_const +suboffsets symfony diff --git a/tests/test_views.py b/tests/test_views.py index 0a453b8..5d09059 100644 --- a/tests/test_views.py +++ b/tests/test_views.py @@ -1,4 +1,4 @@ - +"""Views for testing dd output.""" import datetime import os import unittest @@ -3706,7 +3706,7 @@ class DumpDieViewFunctionTestCase(GenericViewTestCase): ) def test_func_with_args_display(self): - """Verify dumping a "function" type (with args/kwawrgs) has expected output.""" + """Verify dumping a "function" type (with args/kwargs) has expected output.""" self.assertGetResponse( self.url, expected_title='DD', -- GitLab