diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-07-22 18:11:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-22 18:11:46 -0400 |
commit | 73f06a3fa087af164c54b57b2d92466d689d107e (patch) | |
tree | d3105b40848cf3465ebf4e15732872bbc1748487 /test/test-database.js | |
parent | 2d367140938f6501430c6fcb96faef797e75789c (diff) |
Fix definition image aspect ratio issue (#1847)
* Fix incorrect aspect ratio
* Update test data
Diffstat (limited to 'test/test-database.js')
-rw-r--r-- | test/test-database.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-database.js b/test/test-database.js index f8b93505..f2a7efdd 100644 --- a/test/test-database.js +++ b/test/test-database.js @@ -162,8 +162,8 @@ async function testDatabase1() { true ); vm.assert.deepStrictEqual(counts, { - counts: [{kanji: 2, kanjiMeta: 2, terms: 20, termMeta: 16, tagMeta: 15, media: 2}], - total: {kanji: 2, kanjiMeta: 2, terms: 20, termMeta: 16, tagMeta: 15, media: 2} + counts: [{kanji: 2, kanjiMeta: 2, terms: 20, termMeta: 16, tagMeta: 15, media: 4}], + total: {kanji: 2, kanjiMeta: 2, terms: 20, termMeta: 16, tagMeta: 15, media: 4} }); // Test find* functions |