Skip to content

Commit f088760

Browse files
committed
Normalize EXIF test names spelling.
1 parent 14b599e commit f088760

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

test/test.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1031,15 +1031,15 @@
10311031
})
10321032

10331033
describe('Metadata', function () {
1034-
it('Parse Exif tags', function (done) {
1034+
it('Parse EXIF tags', function (done) {
10351035
loadImage.parseMetaData(blobJPEG, function (data) {
10361036
expect(data.exif).to.be.ok
10371037
expect(data.exif.get('Orientation')).to.equal(6)
10381038
done()
10391039
})
10401040
})
10411041

1042-
it('Do not parse Exif tags if disabled', function (done) {
1042+
it('Do not parse EXIF tags if disabled', function (done) {
10431043
loadImage.parseMetaData(
10441044
blobJPEG,
10451045
function (data) {
@@ -1050,7 +1050,7 @@
10501050
)
10511051
})
10521052

1053-
it('Parse Exif tag offsets', function (done) {
1053+
it('Parse EXIF tag offsets', function (done) {
10541054
loadImage.parseMetaData(blobJPEG, function (data) {
10551055
expect(data.exifOffsets).to.be.ok
10561056
expect(data.exifOffsets.get('Orientation')).to.equal(0x16)
@@ -1060,7 +1060,7 @@
10601060
})
10611061
})
10621062

1063-
it('Do not parse Exif tag offsets if disabled', function (done) {
1063+
it('Do not parse EXIF tag offsets if disabled', function (done) {
10641064
loadImage.parseMetaData(
10651065
blobJPEG,
10661066
function (data) {
@@ -1071,7 +1071,7 @@
10711071
)
10721072
})
10731073

1074-
it('Only parse included Exif tags', function (done) {
1074+
it('Only parse included EXIF tags', function (done) {
10751075
loadImage.parseMetaData(
10761076
blobJPEG,
10771077
function (data) {
@@ -1091,7 +1091,7 @@
10911091
)
10921092
})
10931093

1094-
it('Do not parse excluded Exif tags', function (done) {
1094+
it('Do not parse excluded EXIF tags', function (done) {
10951095
loadImage.parseMetaData(
10961096
blobJPEG,
10971097
function (data) {
@@ -1236,7 +1236,7 @@
12361236
).to.be.ok
12371237
})
12381238

1239-
it('Write Exif Orientation tag and replace image head', function (done) {
1239+
it('Write EXIF Orientation tag and replace image head', function (done) {
12401240
loadImage(
12411241
blobJPEG,
12421242
function (img, data) {
@@ -1245,7 +1245,7 @@
12451245
expect(data.exif.get('Orientation')).to.equal(6)
12461246
expect(data.iptc).to.be.ok
12471247
expect(data.iptc.get('ObjectName')).to.equal('blueimp.net')
1248-
// Reset Exif Orientation data:
1248+
// Reset EXIF Orientation data:
12491249
loadImage.writeExifData(data.imageHead, data, 'Orientation', 1)
12501250
img.toBlob(function (blob) {
12511251
loadImage.replaceHead(blob, data.imageHead, function (newBlob) {

0 commit comments

Comments
 (0)