Skip to content

Commit 6e177b2

Browse files
committed
Fix build
1 parent 38e32e5 commit 6e177b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spec/integration/session_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@
369369
})()
370370
JS
371371

372-
expect(@session.evaluate_script(code)).to eq("(cyclic structure)")
372+
expect(@session.evaluate_script(code)).to eq(Ferrum::CyclicObject.instance)
373373
end
374374

375375
it "synchronises page loads properly" do

spec/spec_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def save_exception_aftifacts(browser, meta)
107107
screenshot_path = "#{ENV["CIRCLE_ARTIFACTS"]}/screenshots/#{screenshot_name}"
108108
browser.screenshot(path: screenshot_path, full: true)
109109

110-
log_name = "ferrum-#{filename}-#{line_number}-#{timestamp}.txt"
110+
log_name = "cuprite-#{filename}-#{line_number}-#{timestamp}.txt"
111111
log_path = "#{ENV["CIRCLE_ARTIFACTS"]}/logs/#{log_name}"
112112
File.open(log_path, 'wb') { |file| file.write(browser.logger.string) }
113113
end

0 commit comments

Comments
 (0)