@Params in SQL query not working

Looks like the N prefix in the query breaks the string interpolation

@PricingProgramName = N{{@param1}} evaluates to N@param1

@PricingProgramName = {{@param1}} evaluates to 'myParam1Value'

Is this expected behavior?