Skip to content

Commit 6b8f4cd

Browse files
committed
3.5.5
1 parent cfc712d commit 6b8f4cd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,4 +194,4 @@ To publish the package to PyPI, run the following command:
194194

195195
::
196196

197-
twine upload dist/pystackql-3.5.5.tar.gz
197+
twine upload --config-file .pypirc dist/pystackql-3.5.5.tar.gz

tests/pystackql_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,11 @@ def test_09_csv_output_with_header(self):
159159
@pystackql_test_setup()
160160
def test_10_executeStmt(self):
161161
okta_result_dict = self.stackql.executeStmt(registry_pull_okta_query)
162-
okta_result = okta_result_dict[0]["message"]
162+
okta_result = okta_result_dict["message"]
163163
expected_pattern = registry_pull_resp_pattern("okta")
164164
self.assertTrue(re.search(expected_pattern, okta_result), f"Expected pattern not found in result: {okta_result}")
165165
github_result_dict = self.stackql.executeStmt(registry_pull_github_query)
166-
github_result = github_result_dict[0]["message"]
166+
github_result = github_result_dict["message"]
167167
expected_pattern = registry_pull_resp_pattern("github")
168168
self.assertTrue(re.search(expected_pattern, github_result), f"Expected pattern not found in result: {github_result}")
169169
print_test_result(f"""Test executeStmt method\nRESULTS:\n{okta_result_dict}\n{github_result_dict}""", True)

0 commit comments

Comments
 (0)