diff --git a/tests/operations/git.config/add_existing_multi_value.json b/tests/operations/git.config/add_existing_multi_value.json index a83ed2715..f88f3deca 100644 --- a/tests/operations/git.config/add_existing_multi_value.json +++ b/tests/operations/git.config/add_existing_multi_value.json @@ -5,7 +5,9 @@ }, "facts": { "git.GitConfig": { - "key": ["value"] + "repo=None, system=False": { + "key": ["value"] + } } }, "commands": [] diff --git a/tests/operations/git.config/add_first_multi_value.json b/tests/operations/git.config/add_first_multi_value.json index ee14a64e5..33fbaf4b5 100644 --- a/tests/operations/git.config/add_first_multi_value.json +++ b/tests/operations/git.config/add_first_multi_value.json @@ -4,7 +4,9 @@ "multi_value": true }, "facts": { - "git.GitConfig": {} + "git.GitConfig": { + "repo=None, system=False": {} + } }, "commands": [ "git config --global --add key \"value\"" diff --git a/tests/operations/git.config/add_second_multi_value.json b/tests/operations/git.config/add_second_multi_value.json index 5f429614c..eb5ef643f 100644 --- a/tests/operations/git.config/add_second_multi_value.json +++ b/tests/operations/git.config/add_second_multi_value.json @@ -5,7 +5,9 @@ }, "facts": { "git.GitConfig": { - "key": ["value"] + "repo=None, system=False": { + "key": ["value"] + } } }, "commands": [ diff --git a/tests/operations/git.config/edit_global.json b/tests/operations/git.config/edit_global.json index 298cd7a2a..3c98f6f5f 100644 --- a/tests/operations/git.config/edit_global.json +++ b/tests/operations/git.config/edit_global.json @@ -2,7 +2,9 @@ "args": ["key", "value"], "facts": { "git.GitConfig": { - "key": ["wrongvalue"] + "repo=None, system=False": { + "key": ["wrongvalue"] + } } }, "commands": [ diff --git a/tests/operations/git.config/edit_system.json b/tests/operations/git.config/edit_system.json index 78e5c9ba9..9f2b06da8 100644 --- a/tests/operations/git.config/edit_system.json +++ b/tests/operations/git.config/edit_system.json @@ -5,7 +5,9 @@ }, "facts": { "git.GitConfig": { - "key": ["wrongvalue"] + "repo=None, system=True": { + "key": ["wrongvalue"] + } } }, "commands": [ diff --git a/tests/operations/git.config/set_existing_global.json b/tests/operations/git.config/set_existing_global.json index eb8d85726..ce9426ff8 100644 --- a/tests/operations/git.config/set_existing_global.json +++ b/tests/operations/git.config/set_existing_global.json @@ -2,7 +2,9 @@ "args": ["key", "value"], "facts": { "git.GitConfig": { - "key": ["value"] + "repo=None, system=False": { + "key": ["value"] + } } }, "commands": [], diff --git a/tests/operations/git.config/set_existing_system.json b/tests/operations/git.config/set_existing_system.json index d209d7c90..89d180693 100644 --- a/tests/operations/git.config/set_existing_system.json +++ b/tests/operations/git.config/set_existing_system.json @@ -5,7 +5,9 @@ }, "facts": { "git.GitConfig": { - "key": ["value"] + "repo=None, system=True": { + "key": ["value"] + } } }, "commands": [], diff --git a/tests/operations/git.config/set_global.json b/tests/operations/git.config/set_global.json index fa2cadeb1..4117616a8 100644 --- a/tests/operations/git.config/set_global.json +++ b/tests/operations/git.config/set_global.json @@ -1,7 +1,9 @@ { "args": ["key", "value"], "facts": { - "git.GitConfig": {} + "git.GitConfig": { + "repo=None, system=False": {} + } }, "commands": [ "git config --global key \"value\"" diff --git a/tests/operations/git.config/set_repo.json b/tests/operations/git.config/set_repo.json index e8cc8779b..db3ed2d65 100644 --- a/tests/operations/git.config/set_repo.json +++ b/tests/operations/git.config/set_repo.json @@ -5,7 +5,7 @@ }, "facts": { "git.GitConfig": { - "repo=/my/repo": { + "repo=/my/repo, system=False": { "another_key": ["value"] } }, diff --git a/tests/operations/git.config/set_system.json b/tests/operations/git.config/set_system.json index 208ff9761..7e6f1fccd 100644 --- a/tests/operations/git.config/set_system.json +++ b/tests/operations/git.config/set_system.json @@ -4,7 +4,9 @@ "system": true }, "facts": { - "git.GitConfig": {} + "git.GitConfig": { + "repo=None, system=True": {} + } }, "commands": [ "git config --system key \"value\""