test/rbbt/tsv/test_manipulate.rb in rbbt-util-5.28.9 vs test/rbbt/tsv/test_manipulate.rb in rbbt-util-5.28.10
- old
+ new
@@ -282,20 +282,19 @@
end
def test_reorder_flat
content =<<-EOF
-#Id ValueA
+#Id ValueA
row1 a aa aaa
row2 A
row3 a
EOF
TmpFile.with_file(content) do |filename|
tsv = TSV.open(File.open(filename), :sep => /\s+/, :type => :flat)
-
- assert_equal ["row1", "row3"].sort, tsv.reorder("ValueA")["a"]
+ assert_equal ["row1", "row3"].sort, tsv.reorder("ValueA")["a"]
end
end
def test_transpose
content =<<-EOF