Skip to content

Commit 45597c8

Browse files
authored
two-bucket: declare compliance with 1.4.0 by changing descriptions (#748)
Note that two-bucket was added to the Rust track at #375 At the time it declared 1.0.0 compliance, but was actually compliant with 1.2.0 already! Further updates to 1.3.0 and 1.4.0 require no action on the Rust track's part. 1.0.1: Fix exercise name exercism/problem-specifications#715 Unversioned(!): Change descriptions exercism/problem-specifications#716 (Our descriptions are no better or worse, so might as well keep them) 1.1.0: Add cases where goal equals one bucket's capacity exercism/problem-specifications#763 Rust already had these cases, so just update the descriptions 1.2.0: Fix a test case added in 1.1.0 exercism/problem-specifications#911 exercism/problem-specifications#941 Rust already had the correct values, so no action. 1.3.0: move inputs to `input` object exercism/problem-specifications#1084 1.4.0: rename JSON keys to camelCase exercism/problem-specifications#1136
1 parent 8b4f7ce commit 45597c8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

exercises/two-bucket/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[package]
22
name = "two-bucket"
3-
version = "1.0.0"
3+
version = "1.4.0"

exercises/two-bucket/tests/two-bucket.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ fn test_case_4() {
5555

5656
#[test]
5757
#[ignore]
58-
fn test_case_5() {
58+
fn goal_equal_to_start_bucket() {
5959
assert_eq!(
6060
solve(1, 3, 3, &Bucket::Two),
6161
BucketStats {
@@ -68,7 +68,7 @@ fn test_case_5() {
6868

6969
#[test]
7070
#[ignore]
71-
fn test_case_6() {
71+
fn goal_equal_to_other_bucket() {
7272
assert_eq!(
7373
solve(2, 3, 3, &Bucket::One),
7474
BucketStats {

0 commit comments

Comments
 (0)