From eba01f4e611a34f9454391432c263b61794933fd Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 24 Mar 2020 19:56:43 +1100 Subject: [PATCH] docs: Fix simple typo, freezee -> freeze There is a small typo in djangobower/tests/test_bower.py. Should read `freeze` rather than `freezee`. --- djangobower/tests/test_bower.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/djangobower/tests/test_bower.py b/djangobower/tests/test_bower.py index 75ee910..2fbe2ce 100644 --- a/djangobower/tests/test_bower.py +++ b/djangobower/tests/test_bower.py @@ -79,7 +79,7 @@ def test_freeze(self): ]) def test_no_newline_in_freeze(self): - """Test no newline in freezee""" + """Test no newline in freeze""" installed = bower_adapter.freeze() for package in installed: self.assertNotIn('\n', package)