Skip to content

Commit b79d219

Browse files
committed
Frontend: Update test assertions in uni/model/rest_test.js photoprism#3168
Signed-off-by: Michael Mayer <michael@photoprism.app>
1 parent 0322d7c commit b79d219

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/tests/unit/model/rest_test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ describe("model/abstract", () => {
158158
const values = { ID: 5, Name: "Christmas 2019", Slug: "christmas-2019", UID: 66 };
159159
const album = new Album(values);
160160
const result = Rest.limit();
161-
assert.equal(result, 10000);
162-
assert.equal(album.constructor.limit(), 10000);
161+
assert.equal(result, 100000);
162+
assert.equal(album.constructor.limit(), 100000);
163163
});
164164

165165
it("should create link", async () => {

0 commit comments

Comments
 (0)