Skip to content

Commit add95f2

Browse files
committed
fix typo
1 parent 2f08f65 commit add95f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/line/bot/rich_menu_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,15 +136,15 @@
136136
expect(WebMock).to have_requested(:delete, Line::Bot::API::DEFAULT_ENDPOINT + '/bot/user/1234567/richmenu')
137137
end
138138

139-
it 'link a rich menus to multiple users at a atime' do
139+
it 'link a rich menu to multiple users at a atime' do
140140
uri_template = Addressable::Template.new Line::Bot::API::DEFAULT_ENDPOINT + '/bot/richmenu/bulk/link'
141141
stub_request(:post, uri_template).to_return(body: '{}', status: 200)
142142

143143
client.bulk_link_rich_menus(['1', '2'], '7654321')
144144
expect(WebMock).to have_requested(:post, Line::Bot::API::DEFAULT_ENDPOINT + '/bot/richmenu/bulk/link')
145145
end
146146

147-
it 'unlink a rich menus from multiple users at a time' do
147+
it 'unlink a rich menu from multiple users at a time' do
148148
uri_template = Addressable::Template.new Line::Bot::API::DEFAULT_ENDPOINT + '/bot/richmenu/bulk/unlink'
149149
stub_request(:post, uri_template).to_return(body: '{}', status: 200)
150150

0 commit comments

Comments
 (0)