Skip to content

Commit

Permalink
Added Namespace in org info (#3662)
Browse files Browse the repository at this point in the history
Co-authored-by: David Reed <[email protected]>
  • Loading branch information
jain-naman-sf and davidmreed authored Sep 21, 2023
1 parent ac810e5 commit a8da2c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions cumulusci/cli/org.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ def org_info(runtime, org_name, print_json):
"instance_url",
"instance_name",
"is_sandbox",
"namespace",
"namespaced",
"org_id",
"org_type",
Expand Down
2 changes: 2 additions & 0 deletions cumulusci/cli/tests/test_org.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,7 @@ def test_org_info(self):
"default": True,
"password": None,
"connected_app": "built-in",
"namespace": "test",
}
org_config.expires = date.today()
org_config.latest_api_version = "42.0"
Expand All @@ -557,6 +558,7 @@ def test_org_info(self):
["\x1b[1mconnected_app\x1b[0m", "built-in"],
["\x1b[1mdays\x1b[0m", "1"],
["\x1b[1mdefault\x1b[0m", "True"],
["\x1b[1mnamespace\x1b[0m", "test"],
["\x1b[1mpassword\x1b[0m", "None"],
],
)
Expand Down

0 comments on commit a8da2c3

Please sign in to comment.