Skip to content

Commit a710460

Browse files
author
Frank Natividad
committed
Removed paranthesis and comma from logging spec
1 parent 86ac944 commit a710460

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

logging/spec/sample_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def cleanup!
140140
entries = []
141141

142142
wait_until {
143-
entries = m.call(filter: %Q{logName="#{my_application_log_name}"})
143+
entries = m.call filter: %Q{logName="#{my_application_log_name}"}
144144
entries.any?
145145
}
146146

@@ -209,7 +209,7 @@ def cleanup!
209209
current_time = Time.now.to_f
210210

211211
entries = @logging.entries(
212-
filter: %Q{logName="projects/#{@project_id}/logs/my_application_log"},
212+
filter: %Q{logName="projects/#{@project_id}/logs/my_application_log"}
213213
)
214214
entry = entries.detect { |e| e.payload.include? "time #{current_time}" }
215215
expect(entry).to be nil

0 commit comments

Comments
 (0)