Skip to content
This repository has been archived by the owner on Apr 23, 2021. It is now read-only.

Commit

Permalink
Merge pull request #264 from simphony/fix-lattice-flake
Browse files Browse the repository at this point in the history
Fix flake error in master
  • Loading branch information
nathanfranklin committed Jan 13, 2016
2 parents 2d26ea6 + 5edb69e commit 75fa184
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions simphony/tools/tests/test_lattice_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,9 +361,9 @@ def test_incompatible_lattice_type(self):
p1, p2, p3 = rotate_permute_flip(aligned_vectors)

# when
exclusives = (set(BravaisLattice)
- set(specific_map2_general[bravais_lattice])
- set([bravais_lattice, BravaisLattice.TRICLINIC]))
exclusives = (set(BravaisLattice) -
set(specific_map2_general[bravais_lattice]) -
set([bravais_lattice, BravaisLattice.TRICLINIC]))

# then
# bravais_lattice cannot be compatible with lattice
Expand Down

0 comments on commit 75fa184

Please sign in to comment.