Add bookprize test and remove quotation marks
diff --git a/test/test-xml.sh b/test/test-xml.sh
index 4a08e15..9a94772 100755
--- a/test/test-xml.sh
+++ b/test/test-xml.sh
@@ -50,6 +50,12 @@
 observed=$(xmlstarlet sel --net -t -v "count(/idsCorpus/idsDoc/idsText/idsHeader/fileDesc/publicationStmt/idno[@type='URL' and starts-with(@rend, 'URN;urn:nbn:de:')])"  target/dnb18.i5.xml)
 assert_eq "$observed" "$min_expected" "for every idno element of type URN, there is also an URL element with @rend starting with 'URN;urn:nbn:de:'"
 
+observed=$(xmlstarlet sel --net -t -v "count(/idsCorpus/idsDoc/idsText/idsHeader/fileDesc/sourceDesc/biblStruct/note[@type='award'][@subtype='Deutscher Buchpreis 2024'])"  target/dnb13.i5.xml)
+assert_eq "$observed" "1" "award is correctly identified'"
+
+observed=$(xmlstarlet sel --net -t -v "count(/idsCorpus/idsDoc/idsText/idsHeader/fileDesc/sourceDesc/biblStruct/note[@type='award'])"  target/dnb18.i5.xml)
+assert_eq "$observed" "0" "no falsely identified awards'"
+
 exit_with_test_summary