diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2020-07-21 01:15:18 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-21 01:15:18 +0900 |
| commit | c3b9c7b74bd59f3cbd4ebe59e1b9c415a1086e17 (patch) | |
| tree | f3ff6948774571e5459154a03649004f27071147 | |
| parent | fix lint (#6568) (diff) | |
| download | sharkey-c3b9c7b74bd59f3cbd4ebe59e1b9c415a1086e17.tar.gz sharkey-c3b9c7b74bd59f3cbd4ebe59e1b9c415a1086e17.tar.bz2 sharkey-c3b9c7b74bd59f3cbd4ebe59e1b9c415a1086e17.zip | |
Fix blurhash in test (#6573)
| -rw-r--r-- | test/get-file-info.ts | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/get-file-info.ts b/test/get-file-info.ts index 0c19fb2d7e..8af8493d7a 100644 --- a/test/get-file-info.ts +++ b/test/get-file-info.ts @@ -26,7 +26,7 @@ describe('Get file info', () => { }, width: undefined, height: undefined, - blurhash: null + blurhash: undefined }); })); @@ -43,7 +43,7 @@ describe('Get file info', () => { }, width: 512, height: 512, - blurhash: '' // TODO + blurhash: 'yFLxJjH[NE}@^PRiN_}Y=aVZNvFxxZ#SwIt7Eg%KIp-ospv~Nex[R6t3xZI:iwt6kWxDafoySgsAfR$*oyM|S2t7$iV[tQNbaKn%xt' }); })); @@ -60,7 +60,7 @@ describe('Get file info', () => { }, width: 256, height: 256, - blurhash: '' // TODO + blurhash: 'y8S?Mr-;=~~Xs;%foL?bWVs;xbR%NFay^ms;I-InI-xbs;%gofj[I-s;-WxbI-WUayxb$,NFR*~Wa{R%xbayNFI.oMj[oMNFWB$,WU' }); })); @@ -77,7 +77,7 @@ describe('Get file info', () => { }, width: 256, height: 256, - blurhash: '' // TODO + blurhash: 'y8S?Mr-;=~~Xs;%foL?bWVs;xbR%NFay^ms;I-InI-xbs;%gofj[I-s;-WxbI-WUayxb$,NFR*~Wa{R%xbayNFI.oMj[oMNFWB$,WU' }); })); @@ -94,7 +94,7 @@ describe('Get file info', () => { }, width: 256, height: 256, - blurhash: '' // TODO + blurhash: 'y74P29kDpdp{k?VDZ#krkCaefkf6fQf5HXZ$krkqadaKaJkCaKkXfkkCf5fkQ8kXZ#VDaKk?krZ~kCf6kDf6f5f6U]krZ#Z#aekrkq' }); })); @@ -111,7 +111,7 @@ describe('Get file info', () => { }, width: 256, height: 256, - blurhash: '' // TODO + blurhash: 'yMEKyd1U1?=nZN-2EwofR*oHnijYX6S50J=m]WEVl9JE$SR*xHR;XSX8nQxB-WS6Nts*aKskWnaxR%s*i_n~X6S5=#NgOAs*enoIWU' }); })); @@ -129,7 +129,7 @@ describe('Get file info', () => { }, width: 256, height: 256, - blurhash: '' // TODO + blurhash: 'yMEKyd1U1?=nZN-2EwofR*oHnijYX6S50J=m]WEVl9JE$SR*xHR;XSX8nQxB-WS6Nts*aKskWnaxR%s*i_n~X6S5=#NgOAs*enoIWU' }); })); @@ -146,7 +146,7 @@ describe('Get file info', () => { }, width: 25000, height: 25000, - blurhash: '' // TODO + blurhash: undefined }); })); }); |