(self)
| 945 | self._assert_not_quoted("y" + q1) |
| 946 | |
| 947 | def test_concat_quotefalse(self): |
| 948 | q1 = quoted_name("x", False) |
| 949 | self._assert_not_quoted("y" + q1) |
| 950 | |
| 951 | def test_concat_quotenone(self): |
| 952 | q1 = quoted_name("x", None) |
nothing calls this directly
no test coverage detected