From 278324d8b2da0e0d1cb11d4c4e5ce36ac980e477 Mon Sep 17 00:00:00 2001 From: Srijan Saurav <68371686+srijan-deepsource@users.noreply.github.com> Date: Wed, 14 Apr 2021 19:48:29 +0530 Subject: [PATCH] Update assert_outside_test.py --- assert_outside_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assert_outside_test.py b/assert_outside_test.py index d95f2690..857cc8bd 100644 --- a/assert_outside_test.py +++ b/assert_outside_test.py @@ -1,14 +1,14 @@ # inside a func def def some_function(args): """Docstring.""" - assert 1 > 2, ( + assert 1 > 2, ( "Some message" ) if args != []: raise AssertionError -some_function(123) +some_function('123') #Comment