Skip to content

Commit

Permalink
enhance logging. see #3102
Browse files Browse the repository at this point in the history
  • Loading branch information
cdietrich committed Jul 12, 2024
1 parent 60240c9 commit d39c920
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import org.eclipse.xtext.util.StringInputStream;
import org.junit.Test;

import com.google.common.base.Joiner;
import com.google.inject.Inject;

/**
Expand Down Expand Up @@ -75,7 +76,7 @@ public void run() {
}
}
});
assertEquals(true, capturedLogging.getLogEntries().isEmpty());
assertEquals(Joiner.on("\n").join(capturedLogging.getLogEntries()), true, capturedLogging.getLogEntries().isEmpty());
}
});
assertEquals(true, capturedLogging.getLogEntries().isEmpty());
Expand Down

0 comments on commit d39c920

Please sign in to comment.