Skip to content

Commit 4c8a682

Browse files
committed
update comments on unit tests
1 parent 76c460f commit 4c8a682

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_run_cli_cmd.py

+2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ def test_run_server_with_default_values(
5959
# Path("."): path to local folder
6060
# show=True: same as passing the --view option (which defaults to True)
6161
# port=8000: that is the default port
62+
# default_file=None: default behavior is to have no default file
6263
start_server_mock.assert_called_once_with(Path("."), True, 8000, default_file=None)
6364

6465

@@ -78,6 +79,7 @@ def test_run_server_with_no_view_flag(
7879
# Path("."): path to local folder
7980
# show=False: same as passing the --no-view option
8081
# port=8000: that is the default port
82+
# default_file=None: default behavior is to have no default file
8183
start_server_mock.assert_called_once_with(Path("."), False, 8000, default_file=None)
8284

8385

0 commit comments

Comments
 (0)