c877026602372d85e83b058e833d86e3e407d990,integration_test/test_recipy.py,TestRecipy,test_search_all,#TestRecipy#Any#Any#Any#,330

Before Change


        args.extend(pattern)
        args.append(all_flag)
        args.append(json_flag)
        exit_code, stdout = process.execute_and_capture("recipy", args)
        assert exit_code == 0, ("Unexpected exit code " + str(exit_code))
        assert len(stdout) > 0, "Expected stdout"
        json_logs = json.loads(" ".join(stdout))

After Change


        cmd.extend(pattern)
        cmd.append(all_flag)
        cmd.append(json_flag)
        _, stdout = helpers.execute(cmd, 0)
        assert len(stdout) > 0, "Expected stdout"
        json_logs = json.loads(" ".join(stdout))
        assert num_runs + 1 == len(json_logs),\
            "Unexpected number of JSON logs"
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: recipy/recipy
Commit Name: c877026602372d85e83b058e833d86e3e407d990
Time: 2016-10-24
Author: michaelj@epcc.ed.ac.uk
File Name: integration_test/test_recipy.py
Class Name: TestRecipy
Method Name: test_search_all


Project Name: recipy/recipy
Commit Name: c877026602372d85e83b058e833d86e3e407d990
Time: 2016-10-24
Author: michaelj@epcc.ed.ac.uk
File Name: integration_test/test_recipy.py
Class Name: TestRecipy
Method Name: test_search


Project Name: recipy/recipy
Commit Name: c877026602372d85e83b058e833d86e3e407d990
Time: 2016-10-24
Author: michaelj@epcc.ed.ac.uk
File Name: integration_test/test_recipy.py
Class Name: TestRecipy
Method Name: test_search_bad_syntax