Skip to content

Commit

Permalink
replace usage of conversation scope with request scope in test that v…
Browse files Browse the repository at this point in the history
…erifies usage of multiple scopes
  • Loading branch information
Ladicek committed Feb 2, 2023
1 parent 250bb08 commit 6322aef
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
*/
package org.jboss.cdi.tck.tests.definition.scope.broken.tooManyScopes.producer.method;

import jakarta.enterprise.context.ConversationScoped;
import jakarta.enterprise.context.Dependent;
import jakarta.enterprise.context.RequestScoped;
import jakarta.enterprise.inject.Produces;

@Dependent
public class ProducerMethodWithTooManyScopeTypes_Broken {
@Produces
@ConversationScoped
@RequestScoped
@Dependent
@Word
public String getWord() {
Expand Down

0 comments on commit 6322aef

Please sign in to comment.