Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bytes-sgx
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Markus Becker
bytes-sgx
Commits
d2595897
Commit
d2595897
authored
9 years ago
by
Florian Hartwig
Browse files
Options
Downloads
Patches
Plain Diff
+ isn't implemented on Vec any more
parent
c5452b8c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/test_rope.rs
+4
-1
4 additions, 1 deletion
test/test_rope.rs
with
4 additions
and
1 deletion
test/test_rope.rs
+
4
−
1
View file @
d2595897
...
...
@@ -74,7 +74,10 @@ pub fn test_rope_concat_two_byte_str() {
assert_eq!
(
both
.len
(),
TEST_BYTES_1
.len
()
+
TEST_BYTES_2
.len
());
both
.buf
()
.read
(
&
mut
dst
)
.unwrap
();
assert_eq!
(
dst
,
TEST_BYTES_1
.to_vec
()
+
TEST_BYTES_2
);
let
mut
expected
=
Vec
::
new
();
expected
.extend
(
TEST_BYTES_1
.iter
()
.cloned
());
expected
.extend
(
TEST_BYTES_2
.iter
()
.cloned
());
assert_eq!
(
dst
,
expected
);
}
#[test]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment