Skip to content

Commit 1a77b93

Browse files
authored
Merge pull request #521 from JoelPasvolsky/fix_ra_test
Fix failed unittest
2 parents e6f0ba9 + cc78e71 commit 1a77b93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_reverse_composite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def test_batch_generate_more_initial_states(self):
130130
self.assertGreaterEqual(len(response), 4)
131131

132132
response = sampler.sample_ising(h, J, initial_states=initial_states, initial_states_generator='tile', num_reads=num_reads)
133-
self.assertEqual(len(response), 4)
133+
self.assertEqual(len(response), 8)
134134

135135
with self.assertRaises(ValueError):
136136
response = sampler.sample_ising(h, J, initial_states=initial_states, initial_states_generator='none', num_reads=num_reads)

0 commit comments

Comments
 (0)