Commit 3a227c04 authored by Robert Bradshaw's avatar Robert Bradshaw

Avoid fake enums in test.

Were these ever used, this would have been an error.
parent f4bc43c4
cdef extern from *:
cpdef enum ExternPxdEnum:
cpdef enum: # ExternPxd
FOUR "4"
EIGHT "8"
cdef enum ExternSecretPxdEnum:
cdef enum: # ExternSecretPxd
SIXTEEN "16"
cpdef enum PxdEnum:
......
......@@ -26,12 +26,12 @@ NameError: ...name 'RANK_3' is not defined
cdef extern from *:
cpdef enum ExternPyxEnum:
cpdef enum: # ExternPyx
ONE "1"
TEN "10"
HUNDRED "100"
cdef enum ExternSecretPyxEnum:
cdef enum: # ExternSecretPyx
THOUSAND "1000"
cpdef enum PyxEnum:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment