Implementing sort by number on queries

This commit is contained in:
Deluan
2016-03-02 23:20:17 -05:00
parent 757e1992d7
commit 1f31de589a
5 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -131,7 +131,7 @@ func TestBaseRepository(t *testing.T) {
Convey("When I call loadAll", func() {
var es = make([]TestEntity, 0)
err := repo.loadAll(&es, "")
err := repo.loadAll(&es, "", false)
Convey("Then It should not return any error", func() {
So(err, ShouldBeNil)
})