Add super().setUp() in test_symbolic_shape_analysis (#95336)
Instead of the usual `super().setUp()`, use `super(JitTestCase, self).setUp()` since JitTestCase.setUp() seems to interfere with the test (see the results on the first commit of this PR). `super(JitTestCase, self).setUp()` skips the setUp method of JitTestCase
Fixes https://github.com/pytorch/pytorch/issues/95341
Pull Request resolved: https://github.com/pytorch/pytorch/pull/95336
Approved by: https://github.com/huydhn