Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Integ] Reverting the change made to make AD Integ test Pass due to failure in Spack file Permission #5791

Merged
merged 1 commit into from
Oct 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -449,10 +449,9 @@ def _check_whoami(users):
logging.info("Checking whoami")
for user in users:
result = user.run_remote_command("whoami").stdout
# TODO: Change the assertion to check the output is just the Username
assert_that(result).contains(user.alias)
assert_that(result).is_equal_to(user.alias)
result = user.run_remote_command("srun whoami").stdout
assert_that(result).contains(user.alias)
assert_that(result).is_equal_to(user.alias)


def _check_files_permissions(users, shared_storage_mount_dirs):
Expand Down
Loading