Create a Jenkins "devbranch" job for each of the different unit test types, as is done for branches.
 - correct string quotes
diff --git a/jenkins-dsl/cassandra_job_dsl_seed.groovy b/jenkins-dsl/cassandra_job_dsl_seed.groovy
index 1fd2295..5d88163 100644
--- a/jenkins-dsl/cassandra_job_dsl_seed.groovy
+++ b/jenkins-dsl/cassandra_job_dsl_seed.groovy
@@ -402,7 +402,7 @@
 testTargets.each {
     def targetName = it
 
-    job('Cassandra-devbranch-${targetName}') {
+    job("Cassandra-devbranch-${targetName}") {
         description(jobDescription)
         concurrentBuild()
         jdk(jdkLabel)
@@ -436,7 +436,7 @@
         steps {
             buildDescription('', buildDescStr)
             shell("git clean -xdff ; git clone -b ${buildsBranch} ${buildsRepo}")
-            shell('./cassandra-builds/build-scripts/cassandra-unittest.sh ${targetName}')
+            shell("./cassandra-builds/build-scripts/cassandra-unittest.sh ${targetName}")
         }
         publishers {
             archiveJunit('**/TEST-*.xml') {