Skip to content

Commit

Permalink
fixed completion unit test to reflect new OmegaConf behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
omry committed Nov 6, 2019
1 parent 1c89126 commit 5ee9ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def create_config_loader():
("dict.", 3, ["dict.key1=", "dict.key2=", "dict.key3="]),
("dict.key", 2, ["dict.key1=", "dict.key2=", "dict.key3="]),
("dict.key1=", 2, ["dict.key1=val1"]),
("dict.key3=", 2, ["dict.key3="]),
("dict.key3=", 2, []), # no matches because value is ??? (missing)
("list", 2, ["list.", "list_prefix="]),
("list.", 2, ["list.0=", "list.1=", "list.2="]),
(
Expand Down

0 comments on commit 5ee9ab9

Please sign in to comment.