Skip to content

Commit c0ac65e

Browse files
ericbalawejdermirkoperillo
authored andcommitted
Removed zero-width space characters from test methods
1 parent df42b14 commit c0ac65e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

exercises/practice/nucleotide-count/src/test/java/NucleotideCounterTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public void testEmptyDnaStringHasNoNucleotides() {
1313
NucleotideCounter nucleotideCounter = new NucleotideCounter("");
1414

1515
assertThat(nucleotideCounter.nucleotideCounts())
16-
.containsExactlyInAnyOrderEntriesOf(
16+
.containsExactlyInAnyOrderEntriesOf(
1717
Map.of('A', 0, 'C', 0, 'G', 0, 'T', 0));
1818
}
1919

@@ -23,7 +23,7 @@ public void testDnaStringHasOneNucleotide() {
2323
NucleotideCounter nucleotideCounter = new NucleotideCounter("G");
2424

2525
assertThat(nucleotideCounter.nucleotideCounts())
26-
.containsExactlyInAnyOrderEntriesOf(
26+
.containsExactlyInAnyOrderEntriesOf(
2727
Map.of('A', 0, 'C', 0, 'G', 1, 'T', 0));
2828
}
2929

@@ -33,7 +33,7 @@ public void testRepetitiveSequenceWithOnlyGuanine() {
3333
NucleotideCounter nucleotideCounter = new NucleotideCounter("GGGGGGG");
3434

3535
assertThat(nucleotideCounter.nucleotideCounts())
36-
.containsExactlyInAnyOrderEntriesOf(
36+
.containsExactlyInAnyOrderEntriesOf(
3737
Map.of('A', 0, 'C', 0, 'G', 7, 'T', 0));
3838
}
3939

@@ -44,7 +44,7 @@ public void testDnaStringHasMultipleNucleotide() {
4444
= new NucleotideCounter("AGCTTTTCATTCTGACTGCAACGGGCAATATGTCTCTGTGTGGATTAAAAAAAGAGTGTCTGATAGCAGC");
4545

4646
assertThat(nucleotideCounter.nucleotideCounts())
47-
.containsExactlyInAnyOrderEntriesOf(
47+
.containsExactlyInAnyOrderEntriesOf(
4848
Map.of('A', 20, 'C', 12, 'G', 17, 'T', 21));
4949
}
5050

0 commit comments

Comments
 (0)