Files

10 lines
198 B
Python
Raw Permalink Normal View History

from .context import assert_equal
import pytest
from sympy import sin, Symbol
x = Symbol('x', real=True)
def test_left_right_cdot():
assert_equal("\\sin\\left(x\\right)\\cdot x", sin(x) * x)