Skip to content

Commit 5fa2617

Browse files
committed
---
yaml --- r: 56443 b: refs/heads/auto c: f40be99 h: refs/heads/master i: 56441: 5d5d4b0 56439: 9921e67 v: v3
1 parent 7489638 commit 5fa2617

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1414
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1515
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1616
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17-
refs/heads/auto: dbc2e99693eb20da9b9823bc11953835b156802f
17+
refs/heads/auto: f40be999cab20ee51758620d9ccf435c62fcb51f
1818
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1919
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c

branches/auto/src/libcore/num/float.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ mod tests {
798798
}
799799
800800
#[test]
801-
pub fn test_signed() {
801+
fn test_signed() {
802802
assert_eq!(infinity.abs(), infinity);
803803
assert_eq!(1f.abs(), 1f);
804804
assert_eq!(0f.abs(), 0f);

branches/auto/src/libcore/num/int-template.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -553,10 +553,7 @@ mod tests {
553553
/// - `qr`: quotient and remainder
554554
///
555555
#[cfg(test)]
556-
fn test_division_rule(nd: (T,T), qr: (T,T)) {
557-
let (n,d) = nd,
558-
(q,r) = qr;
559-
556+
fn test_division_rule((n,d): (T,T), (q,r): (T,T)) {
560557
assert_eq!(d * q + r, n);
561558
}
562559

0 commit comments

Comments
 (0)