Skip to content

Commit 2c042d5

Browse files
committed
Merge branch 'master' of https://github.com/bhoffman0/CSAwesome
2 parents 71953c2 + 86580c4 commit 2c042d5

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

_sources/Unit5-Writing-Classes/topic-5-4-accessor-methods.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ You've been hired to create a software system for the Awesome Animal Clinic! The
420420
{
421421
String output = getMethodOutput("main");
422422
423-
String expect = "3+ line(s) of text";
423+
String expect = "2+ line(s) of text";
424424
String actual = " line(s) of text";
425425
426426
int len = output.split("\n").length;
@@ -433,9 +433,9 @@ You've been hired to create a software system for the Awesome Animal Clinic! The
433433
{
434434
actual = output.length() + actual;
435435
}
436-
boolean passed = len >= 3;
436+
boolean passed = len >= 2;
437437
438-
getResults(expect, actual, "Checking main method prints info for Pet objects", passed);
438+
getResults(expect, actual, "Checking main method prints info for 2 Pet objects", passed);
439439
assertTrue(passed);
440440
}
441441
}

_static/css/custom.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ strong,
3333
font-weight: bolder;
3434
}
3535

36+
.runestone-sphinx
37+
div.highlight pre {
38+
background-color: lightyellow;
39+
}
40+
3641
a,
3742
.runestone-sphinx a
3843
{

0 commit comments

Comments
 (0)