Skip to content

Commit

Permalink
cleaning up test comments
Browse files Browse the repository at this point in the history
  • Loading branch information
davydotcom committed Jan 15, 2025
1 parent 6f020ce commit d899797
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,8 @@ class RxPromiseSpec extends Specification {

void 'Test promise null handling'() {

when: 'a promise map is created'
when: 'a null promise result is created'
def promise = Promises.createPromise {
sleep 1000
return null
}
def result = promise.get()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@ class RxPromiseSpec extends Specification {

void 'Test promise null handling'() {

when: 'a promise map is created'
when: 'a null promise result is created'
def promise = Promises.createPromise {
sleep 1000
return null
}
def result = promise.get()
Expand Down

0 comments on commit d899797

Please sign in to comment.