Skip to content
This repository has been archived by the owner on Jun 26, 2024. It is now read-only.

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Kazuhiro Ogura committed May 31, 2013
1 parent 3719d4a commit 7b338a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/erlaws_s3_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ test_connection_1_basic(Config) ->
ct:print("BucketName: ~s", [BucketName]),
{ok, BucketName, _} = C:create_bucket(BucketName),

%% Try a list_buckets and see if it's really there
%% Try list_buckets and see if it's really there
{ok, BucketNames, _} = C:list_buckets(),
true = lists:member(BucketName, BucketNames),

Expand Down Expand Up @@ -247,7 +247,7 @@ test_connection_1_basic(Config) ->
%% Now delete bucket
{ok, _} = C:delete_bucket(BucketName),

%% Try a list_buckets and ensure it's not there
%% Try list_buckets and ensure it's not there
{ok, BucketNames99, _} =C:list_buckets(),
false = lists:member(BucketName, BucketNames99).

0 comments on commit 7b338a5

Please sign in to comment.