Skip to content

Commit

Permalink
more cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
stevensJourney committed Oct 30, 2024
1 parent ed582bb commit dd32fdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/powersync/lib/src/streaming_sync.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class StreamingSyncImplementation {

// An internal controller which is used to trigger CRUD uploads internally
// e.g. when reconnecting.
// This is only a broadcast stream since the `crudLoop` method is public
// This is only a broadcast controller since the `crudLoop` method is public
// and could potentially be called multiple times externally.
final StreamController<Null> _internalCrudTriggerController =
StreamController<Null>.broadcast();
Expand Down
2 changes: 1 addition & 1 deletion packages/powersync/test/connected_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void main() {
expect(db.connected, isTrue);
});

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

Expand Down

0 comments on commit dd32fdf

Please sign in to comment.