Skip to content

Commit dd32fdf

Browse files
more cleanup
1 parent ed582bb commit dd32fdf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/powersync/lib/src/streaming_sync.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class StreamingSyncImplementation {
3030

3131
// An internal controller which is used to trigger CRUD uploads internally
3232
// e.g. when reconnecting.
33-
// This is only a broadcast stream since the `crudLoop` method is public
33+
// This is only a broadcast controller since the `crudLoop` method is public
3434
// and could potentially be called multiple times externally.
3535
final StreamController<Null> _internalCrudTriggerController =
3636
StreamController<Null>.broadcast();

packages/powersync/test/connected_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ void main() {
5959
expect(db.connected, isTrue);
6060
});
6161

62-
test('should trigger uploads when connection is established', () async {
62+
test('should trigger uploads when connection is re-established', () async {
6363
int uploadCounter = 0;
6464
Completer uploadTriggeredCompleter = Completer();
6565

0 commit comments

Comments
 (0)