spec/unit/chunker_spec.rb in lhm-1.3.0 vs spec/unit/chunker_spec.rb in lhm-2.0.0
- old
+ new
@@ -24,11 +24,11 @@
end
it "should copy the correct range and column" do
@chunker.copy(from = 1, to = 100).must_equal(
"insert ignore into `destination` (`secret`) " +
- "select `secret` from `origin` " +
- "where `id` between 1 and 100"
+ "select origin.`secret` from `origin` " +
+ "where origin.`id` between 1 and 100"
)
end
end
describe "invalid" do