Schedule change in jenkins file

Change-Id: I60b746e589a47a82ee4a65b804f7d66e39e810d4
diff --git a/TestON/tests/SCPF/Jenkinsfile b/TestON/tests/SCPF/Jenkinsfile
index f5bef56..d52afd6 100644
--- a/TestON/tests/SCPF/Jenkinsfile
+++ b/TestON/tests/SCPF/Jenkinsfile
@@ -49,19 +49,19 @@
     today = now[Calendar.DAY_OF_WEEK]
     switch (today) {
         case Calendar.MONDAY:
-            choices = SCPF_Basic + "\n" + SCPF_ExtraSetA
+            choices = SCPF_Basic + "\n" + SCPF_ExtraSetB
             println "Defaulting to Monday tests:" + choices
             break
         case Calendar.TUESDAY:
-            choices = SCPF_Basic + "\n" + SCPF_ExtraSetB
+            choices = SCPF_Basic
             println "Defaulting to Tuesday tests:" + choices
             break
         case Calendar.WEDNESDAY:
-            choices = SCPF_Basic
+            choices = SCPF_Basic + "\n" + SCPF_ExtraSetA
             println "Defaulting to Wednesday tests:" + choices
             break
         case Calendar.THURSDAY:
-            choices = SCPF_Basic + "\n" + SCPF_ExtraSetA
+            choices = SCPF_Basic + "\n" + SCPF_ExtraSetB
             println "Defaulting to Thursday tests:" + choices
             break
         case Calendar.FRIDAY:
@@ -73,7 +73,7 @@
             println "Defaulting to Saturday tests:" + choices
             break
         case Calendar.SUNDAY:
-            choices = SCPF_Basic
+            choices = SCPF_Basic + "\n" + SCPF_ExtraSetA
             println "Defaulting to Sunday tests:" + choices
             break
     }