Skip to content

Commit f84fcd5

Browse files
committed
Publish docs on release, fix failing test
1 parent 951593d commit f84fcd5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Publish Dokka Documentation
22

33
on:
44
push:
5-
branches:
6-
- 'master'
5+
tags:
6+
- '*'
77

88
jobs:
99
build:

common/src/test/kotlin/LimitedOrderedSetTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class LimitedOrderedSetTest {
3636
fun `test adding elements to the set`() {
3737
val added = set.add("Element1")
3838
assertTrue(added)
39-
assertEquals(2, set.size)
39+
assertEquals(1, set.size)
4040
}
4141

4242
@Test

0 commit comments

Comments
 (0)