Skip to content

Commit

Permalink
Update changelog file
Browse files Browse the repository at this point in the history
  • Loading branch information
levisingularity committed Jul 31, 2024
1 parent 11d5847 commit 0503d51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1 +1 @@

[#99] Correct default value display in prompt for Redis and MongoDB cluster setting (PR: #102)
4 changes: 2 additions & 2 deletions tests/integration/test_config.bats
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,10 @@ EOF
assert_not_equal "$(get_config ".jupyter_notebook.port")" "$jupyter_notebook_port"

assert_equal "$old_redis_port" "$(get_config ".redis.port")"
assert_equal "$(human_to_boolean "$old_redis_cluster")" "$(get_config ".redis.cluster")"
assert_equal "$old_redis_cluster" "$(get_config ".redis.cluster")"
assert_equal "$old_mongodb_port" "$(get_config ".mongodb.port")"
assert_equal "$old_mongodb_username" "$(get_config ".mongodb.username")"
assert_equal "$old_mongodb_password" "$(get_config ".mongodb.password")"
assert_equal "$(human_to_boolean "$old_mongodb_cluster")" "$(get_config ".mongodb.cluster")"
assert_equal "$old_mongodb_cluster" "$(get_config ".mongodb.cluster")"
assert_equal "$old_jupyter_notebook_port" "$(get_config ".jupyter_notebook.port")"
}

0 comments on commit 0503d51

Please sign in to comment.