Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/dry/files/memory_file_system/node.rb
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def readlines
raise NotMemoryFileError, segment unless file?

@content.rewind
@content.readlines
@content.readlines(chomp: true)
end

# Write file contents
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/dry/files/memory_file_system/node_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
expect(subject.readlines).to eq(["foo"])

subject.write(%w[foo bar])
expect(subject.readlines).to eq(["foo#{newline}", "bar"])
expect(subject.readlines).to eq(["foo", "bar"])
end

it "raises error when not file" do
Expand Down