Skip to content

Commit

Permalink
reset
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdan Peter committed Mar 13, 2024
1 parent 1382c7f commit 61a8696
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion logbasecommand/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.2"
__version__ = "0.0.3"
3 changes: 2 additions & 1 deletion testapp/testapp/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""

from django.contrib import admin
from django.urls import path

urlpatterns = [
path('admin/', admin.site.urls),
path("admin/", admin.site.urls),
]
2 changes: 1 addition & 1 deletion testapp/tests/test_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ def test_silent(self):
out = StringIO()
err = StringIO()
call_command('some_command', verbosity=0, stdout=out, stderr=err)
self.assertEqual(out.getvalue(), 'info message\n')
self.assertEqual(out.getvalue(), '')
self.assertEqual(err.getvalue(), 'error message\nexception handled\n')

0 comments on commit 61a8696

Please sign in to comment.