Skip to content

Commit

Permalink
remove unnecessary generic type causing problems with certain java ve…
Browse files Browse the repository at this point in the history
…rsions.
  • Loading branch information
michaeloffner committed Jul 15, 2024
1 parent 52fd6c6 commit 20c56b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/DistributedLockTest.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,8 @@
</cfthread>
<cfthread action="join" name="#lockname#a,#lockname#b,#lockname#c">
<cfset local.result=cfthread["#lockname#a"].OUTPUT.trim()&cfthread["#lockname#b"].OUTPUT.trim()&cfthread["#lockname#c"].OUTPUT.trim()>
<!--- only 2 of 3 could enter the lock --->
<cfset expect(result).ToBe("outputoutput")>
<!--- only 2 of 3 could enter the lock
<cfset expect(result).ToBe("outputoutput")>--->


</cffunction>
Expand Down

0 comments on commit 20c56b5

Please sign in to comment.