Skip to content

Commit

Permalink
user study should not deal with clustering.
Browse files Browse the repository at this point in the history
  • Loading branch information
kajdreef committed Nov 8, 2020
1 parent c165066 commit c042cfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/routes/TestMatrixView.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ class TestMatrixView extends Component {
methods: response.coverage.methods.map(m => {
m.get_id = () => m.method_id;
m.to_string = () => `${m.package_name}.${m.class_name} ${m.method_decl}`;
m.get_group = () => m.hasOwnProperty('cluster_id') ? m.cluster_id : m.package_name;
m.get_group = () => m.package_name;
return m;
}),
tests: response.coverage.tests.map(t => {
t.get_id = () => t.test_id;
t.to_string = () => `${t.class_name} ${t.method_name}`;
t.get_group = () => t.hasOwnProperty('cluster_id') ? t.cluster_id : t.class_name;
t.get_group = () => t.class_name;
return t;
}),
edges: response.coverage.edges,
Expand Down

0 comments on commit c042cfc

Please sign in to comment.