Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
cython
Commits
8cc8080b
Commit
8cc8080b
authored
Aug 16, 2018
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable broken assertion on os-x.
parent
cd0e0066
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
tests/run/cpp_stl_cpp11.pyx
tests/run/cpp_stl_cpp11.pyx
+3
-2
No files found.
tests/run/cpp_stl_cpp11.pyx
View file @
8cc8080b
...
...
@@ -127,8 +127,9 @@ def test_unordered_set_functionality():
int_set
.
insert
(
int_set2
.
begin
(),
int_set2
.
end
())
assert
int_set
.
size
()
==
2
int_set
.
max_load_factor
(
0.5
)
assert
int_set
.
max_load_factor
()
==
0.5
if
sys
.
platform
!=
'darwin'
:
int_set
.
max_load_factor
(
0.5
)
assert
int_set
.
max_load_factor
()
==
0.5
int_set
.
rehash
(
20
)
int_set
.
reserve
(
20
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment