The error message I received was (line-breaks added for readability):
[] exception expected, not Class: <NoMethodError>
Message: <"undefined method `+' for :cats:Symbol">
---Backtrace---
/Ruby_on_Rails/koans/about_symbols.rb:89:in
`block in test_symbols_cannot_be_concatenated'
Following the pattern I thought I had established of looking for "expected but was", I thought the answer would be "exception". That clearly didn't work, but based on noodl's answer, I realized that for an assert_raise() the clue is the Class that is expected to be called, in this case <NoMethodError>.
This seems to be consistent with documentation at APIdock which indicates the args are each being evaluated as a __check_exception_class