bc592f6fea1ed5121a69794a4d08aeb7a5fa07f5,tests/test_contract.py,,test_contract_expression_checks,#,153

Before Change



    with pytest.raises(IndexError):
        expr(np.random.rand(2, 3))
    with pytest.raises(ValueError):
        expr(np.random.rand(2, 3, 4), np.random.rand(3, 4))
    with pytest.raises(ValueError):
        expr(np.random.rand(2, 4), np.random.rand(3, 4, 5))

After Change


    expr = contract_expression("ab,bc->ac", (2, 3), (3, 4))

    // too few arguments
    with pytest.raises(ValueError) as err:
        expr(np.random.rand(2, 3))
    assert "`ContractExpression` takes exactly 2" in str(err)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 6

Non-data size: 2

Instances


Project Name: dgasmith/opt_einsum
Commit Name: bc592f6fea1ed5121a69794a4d08aeb7a5fa07f5
Time: 2017-12-05
Author: john.gray.14@ucl.ac.uk
File Name: tests/test_contract.py
Class Name:
Method Name: test_contract_expression_checks


Project Name: lmcinnes/umap
Commit Name: 168797e927de822693a77164b93a565f6d0e4468
Time: 2021-02-09
Author: valerio.maggio@gmail.com
File Name: umap/tests/test_densmap.py
Class Name:
Method Name: test_densmap_trustworthiness_on_iris


Project Name: dgasmith/opt_einsum
Commit Name: bc592f6fea1ed5121a69794a4d08aeb7a5fa07f5
Time: 2017-12-05
Author: john.gray.14@ucl.ac.uk
File Name: tests/test_contract.py
Class Name:
Method Name: test_contract_expression_checks