Skip to content

Commit

Permalink
test: Fix incorrect data
Browse files Browse the repository at this point in the history
  • Loading branch information
setu4993 committed Aug 22, 2024
1 parent 208f828 commit dd05548
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/credentials_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ def test_credentials_get(self):

class TokenResponse(object):
status = 200
data = b"test-s3-full-access-for-minio-ec2"
data = b"test-s3-token-for-minio"


class CredListResponse(object):
status = 200
data = b"test-s3-token-for-minio"
data = b"test-s3-full-access-for-minio-ec2"


class CredsResponse(object):
Expand Down

0 comments on commit dd05548

Please sign in to comment.