File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -706,7 +706,7 @@ def hello_john(msg):
706706 with hello_john :
707707 code = run ('manage.py hello' , manager .run )
708708 out , err = capsys .readouterr ()
709- assert 'john' in out
709+ assert 'hello - (peter, john, sam): john' in out
710710
711711 def test_command_with_default_prompt_choices (self , capsys ):
712712
@@ -724,7 +724,7 @@ def hello_john(msg):
724724 with hello_john :
725725 code = run ('manage.py hello' , manager .run )
726726 out , err = capsys .readouterr ()
727- assert 'john' in out
727+ assert 'hello - (peter, charlie, sam) [john]: john' in out
728728
729729 @Catcher
730730 def hello_charlie (msg ):
@@ -734,7 +734,7 @@ def hello_charlie(msg):
734734 with hello_charlie :
735735 code = run ('manage.py hello' , manager .run )
736736 out , err = capsys .readouterr ()
737- assert 'charlie' in out
737+ assert 'hello - (peter, charlie, sam) [john]: charlie' in out
738738
739739class TestSubManager :
740740
You can’t perform that action at this time.
0 commit comments