diff options
| author | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2015-06-27 15:45:48 +0200 |
|---|---|---|
| committer | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2015-06-27 15:45:48 +0200 |
| commit | 7d0198d5d2cc13d5030e42ccd1109adebea25b34 (patch) | |
| tree | 072f77d5e61f2aa82bd56eb32950e90f3f5a3afa | |
| parent | 912ab64a0de2c121a1c9f10bb1dbe75983b78c73 (diff) | |
| download | rust-7d0198d5d2cc13d5030e42ccd1109adebea25b34.tar.gz rust-7d0198d5d2cc13d5030e42ccd1109adebea25b34.zip | |
test: fix some indents
| -rw-r--r-- | src/test/compile-fail/no-send-res-ports.rs | 2 | ||||
| -rw-r--r-- | src/test/run-pass/issue-2718.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/test/compile-fail/no-send-res-ports.rs b/src/test/compile-fail/no-send-res-ports.rs index b80d15bb6f3..60b2d22079e 100644 --- a/src/test/compile-fail/no-send-res-ports.rs +++ b/src/test/compile-fail/no-send-res-ports.rs @@ -20,7 +20,7 @@ fn main() { _x: Port<()>, } - impl Drop for foo { + impl Drop for foo { fn drop(&mut self) {} } diff --git a/src/test/run-pass/issue-2718.rs b/src/test/run-pass/issue-2718.rs index 1a139bdf0fb..2da2f1e82a6 100644 --- a/src/test/run-pass/issue-2718.rs +++ b/src/test/run-pass/issue-2718.rs @@ -165,7 +165,7 @@ pub mod pipes { p: Option<*const packet<T>>, } - impl<T:Send> Drop for send_packet<T> { + impl<T:Send> Drop for send_packet<T> { fn drop(&mut self) { unsafe { if self.p != None { @@ -194,7 +194,7 @@ pub mod pipes { p: Option<*const packet<T>>, } - impl<T:Send> Drop for recv_packet<T> { + impl<T:Send> Drop for recv_packet<T> { fn drop(&mut self) { unsafe { if self.p != None { |
