Code:
sed '/pattern to match/d' input-file
is correct.
Since you have spaces in your pattern you should delimit those spaces with the backslash.
Code:
sed '/not delimited pattern/d' input-file // probably will not work
sed '/yes\ delimited\ pattern/d' input-file // probably will work