Unless you use break; on your case, execution just falls into the next case. You can use this to your advantage by stacking each of your cases together, e.g.:
switch(get_option('my_template')) {
case 'test1':
case 'test2':
return 850;
break;
default:
return 950;
}
Because there is no break; on the 'test1' case, when execution ends on that case (i.e. immediately, since there is no logic in it), control will then fall to the 'test2' case, which will end at its break statement.
In this case, the break isn't even needed for these cases, since the return statement will take care of breaking out of the switch on its own.