diff --git a/spec/attendee_spec.rb b/spec/attendee_spec.rb index a9add4e..eaad4dc 100644 --- a/spec/attendee_spec.rb +++ b/spec/attendee_spec.rb @@ -25,13 +25,13 @@ context "#joined" do it "should properly parse join time." do - expect(@attendee.joined).to eql(Time.new(2018, 8, 16, 11, 39, 21)) + expect(@attendee.joined).to eql(Time.new(2018, 8, 16, 11, 39, 21, "-04:00")) end end context "#left" do it "should properly parse leave time." do - expect(@attendee.left).to eql(Time.new(2018, 8, 16, 11, 40, 58)) + expect(@attendee.left).to eql(Time.new(2018, 8, 16, 11, 40, 58, "-04:00")) end end diff --git a/spec/recording_spec.rb b/spec/recording_spec.rb index 68f263d..e96b473 100644 --- a/spec/recording_spec.rb +++ b/spec/recording_spec.rb @@ -26,13 +26,13 @@ context "#start" do it "should properly parse start time." do - expect(@sample.start).to eql(Time.new(2018, 8, 16, 11, 39, 21)) + expect(@sample.start).to eql(Time.new(2018, 8, 16, 11, 39, 21, "-04:00")) end end context "#finish" do it "should properly parse finish time." do - expect(@sample.finish).to eql(Time.new(2018, 8, 16, 11, 40, 58)) + expect(@sample.finish).to eql(Time.new(2018, 8, 16, 11, 40, 58, "-04:00")) end end