Skip to content

Commit caa78bf

Browse files
chore: linting errors fix
1 parent 7d9434e commit caa78bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spec/client_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def loop_times(times)
3434
@client.upsert_users(@fellowship_of_the_ring)
3535

3636
# Create a new channel for chat max length for channel_id is 64 characters
37-
channel_id = 'fellowship-of-the-ring-chat-' + SecureRandom.alphanumeric(20)
37+
channel_id = "fellowship-of-the-ring-chat-#{SecureRandom.alphanumeric(20)}"
3838

3939
@channel = @client.channel('team', channel_id: channel_id,
4040
data: { members: @fellowship_of_the_ring.map { |fellow| fellow[:id] } })

spec/moderation_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def loop_times(times)
3434
@client.upsert_users(@fellowship_of_the_ring)
3535

3636
# Create a new channel for moderation
37-
channel_id = 'fellowship-of-the-ring-moderation-' + SecureRandom.alphanumeric(20)
37+
channel_id = "fellowship-of-the-ring-moderation-#{SecureRandom.alphanumeric(20)}"
3838

3939
@channel = @client.channel('team', channel_id: channel_id,
4040
data: { members: @fellowship_of_the_ring.map { |fellow| fellow[:id] } })

0 commit comments

Comments
 (0)