@@ -108,7 +108,7 @@ public void TagIO_R_FlacOGG()
108
108
var theFile = new AudioDataManager ( AudioDataIOFactory . GetInstance ( ) . GetFromPath ( location ) ) ;
109
109
110
110
string comment = testData . Comment ;
111
- int bpm = testData . BPM . Value ;
111
+ var bpm = testData . BPM . Value ;
112
112
DateTime publishingDate = testData . PublishingDate ;
113
113
IList < PictureInfo > pictureInfos = testData . EmbeddedPictures ;
114
114
string catalogNumber = testData . CatalogNumber ;
@@ -142,7 +142,7 @@ public void TagIO_R_FlacTheora()
142
142
var theFile = new AudioDataManager ( AudioDataIOFactory . GetInstance ( ) . GetFromPath ( location ) ) ;
143
143
144
144
string comment = testData . Comment ;
145
- int bpm = testData . BPM . Value ;
145
+ var bpm = testData . BPM . Value ;
146
146
DateTime publishingDate = testData . PublishingDate ;
147
147
IList < PictureInfo > pictureInfos = testData . EmbeddedPictures ;
148
148
string catalogNumber = testData . CatalogNumber ;
@@ -175,7 +175,7 @@ public void TagIO_RW_FlacOGG()
175
175
string location = "OGG/embedded-flac.ogg" ;
176
176
177
177
string comment = testData . Comment ;
178
- int bpm = testData . BPM . Value ;
178
+ var bpm = testData . BPM . Value ;
179
179
DateTime publishingDate = testData . PublishingDate ;
180
180
IList < PictureInfo > pictureInfos = testData . EmbeddedPictures ;
181
181
string catalogNumber = testData . CatalogNumber ;
@@ -209,7 +209,7 @@ public void TagIO_R_VorbisOGG_dirtyTrackDiscNumbering()
209
209
string location = TestUtils . GetResourceLocationRoot ( ) + "OGG/ogg_dirtyTrackDiscNumbering.ogg" ;
210
210
AudioDataManager theFile = new AudioDataManager ( AudioDataIOFactory . GetInstance ( ) . GetFromPath ( location ) ) ;
211
211
212
- int bpm = testData . BPM . Value ;
212
+ var bpm = testData . BPM . Value ;
213
213
DateTime publishingDate = testData . PublishingDate ;
214
214
string catalogNumber = testData . CatalogNumber ;
215
215
try
0 commit comments