Skip to content

Commit

Permalink
Resolve #21: Implicitly deduplicate RunIds
Browse files Browse the repository at this point in the history
This is possible, because the equality/comparison is now including everything.

Signed-off-by: Stefan Marr <[email protected]>
  • Loading branch information
smarr committed Nov 7, 2024
1 parent a7abfdd commit 2f8a2e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rebench/tests/configurator_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ def test_number_of_experiments_smallconf(self):
self.ui, None)
self.assertEqual(1, len(cnf.get_experiments()))

@unittest.skip("needs to be fixed, see #21")
def test_number_of_experiments_testconf(self):
cnf = Configurator(load_config(self._path + '/test.conf'), DataStore(self.ui),
self.ui, None, None, 'all')
self.assertEqual(6, len(cnf.get_experiments()))
self.assertEqual(5, len(cnf.get_experiments()))
self.assertEqual(53, len(cnf.get_runs()))

def _get_experiment(self):
cnf = Configurator(load_config(self._path + '/small.conf'), DataStore(self.ui),
Expand Down

0 comments on commit 2f8a2e5

Please sign in to comment.