Skip to content

Commit

Permalink
[FAPI] check server started text change
Browse files Browse the repository at this point in the history
  • Loading branch information
anjuchamantha committed Dec 18, 2023
1 parent daeab27 commit b232a99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oidc-fapi-conformance-tests/configure_is_fapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def unpack_and_run(zip_file_name):
process = subprocess.Popen("./" + dir_name + "/bin/wso2server.sh", stdout=subprocess.PIPE)
while True:
output = process.stdout.readline()
if b'..................................' in output:
if b'WSO2 Carbon started' in output:
print("\n>>> Server Started")
break
if output:
Expand Down

0 comments on commit b232a99

Please sign in to comment.