Skip to content

Commit f2d9a35

Browse files
committed
Remove comment
1 parent f2aa066 commit f2d9a35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/scala/leetcode_30days_challenge_July2020/MyScalaTestSubsets.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class MyScalaTestSubsets extends MyScalaTestUtil {
1515
val testcaseResult3: List[List[Int]] = subsets(Array(1))
1616
}
1717

18-
//execute the test cases as below
18+
1919
"result set" should "combinations of all subsets without duplicates" in new TestSubsetsList {
2020
testcaseResult1 should be(List(List(), List(1), List(2), List(3), List(1, 2), List(1, 3), List(2, 3), List(1, 2, 3)))
2121
testcaseResult2 should not be (List(List(), List(1), List(2), List(3), List(1, 2), List(1, 3), List(2, 3), List(1, 2, 3)))

0 commit comments

Comments
 (0)